properties-gen
Version:
CLI to generate environment properties based on config
11 lines (10 loc) • 394 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isPrimitive = exports.isArray = void 0;
var isArray = function (value) { return Array.isArray(value); };
exports.isArray = isArray;
var isPrimitive = function (value) {
var type = typeof value;
return type === 'string' || type === 'number' || type === 'boolean';
};
exports.isPrimitive = isPrimitive;