forked from enviPath/enviPy
6 lines
120 B
JavaScript
6 lines
120 B
JavaScript
'use strict'
|
|
|
|
module.exports = function isDefined (identifier) {
|
|
return 'typeof ' + identifier + ' !== "undefined"'
|
|
}
|