UNPKG

rollup-plugin-sass

Version:
12 lines 534 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isFunction = exports.isObject = exports.isString = exports.isset = void 0; const isset = (x) => x !== null && x !== undefined; exports.isset = isset; const isString = (x) => (0, exports.isset)(x) && x.constructor === String; exports.isString = isString; const isObject = (x) => typeof x === 'object'; exports.isObject = isObject; const isFunction = (x) => typeof x === 'function'; exports.isFunction = isFunction; //# sourceMappingURL=helpers.js.map