UNPKG

gulp-transform

Version:

A Gulp plugin for applying custom transformations to the contents of files

45 lines 933 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * The name to display when a PluginError is thrown or emitted. * * @internal */ exports.PLUGIN_NAME = "gulp-transform"; /** * Tests whether a value is a function. * * @internal */ function isFunction(value) { return typeof value === "function"; } exports.isFunction = isFunction; /** * Tests whether a value is either null or undefined. * * @internal */ function isNil(value) { return value == null; } exports.isNil = isNil; /** * Tests whether a value is an object that is not a function. * * @internal */ function isObjectLike(value) { return typeof value === "object" && !!value; } exports.isObjectLike = isObjectLike; /** * Tests whether a value is a string primitive. * * @internal */ function isString(value) { return typeof value === "string"; } exports.isString = isString; //# sourceMappingURL=common.js.map