rollup-plugin-sass
Version:
Rollup Sass files.
8 lines • 324 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isObject = exports.isString = void 0;
const isString = (x) => typeof x === 'string';
exports.isString = isString;
const isObject = (x) => x !== null && typeof x === 'object';
exports.isObject = isObject;
//# sourceMappingURL=helpers.js.map