UNPKG

proxify-method

Version:

Project for flexible extension of the existing functionality

12 lines 404 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isRegex = exports.isString = void 0; function isString(arg) { return Object.prototype.toString.call(arg) === '[object String]'; } exports.isString = isString; function isRegex(arg) { return Object.prototype.toString.call(arg) === '[object RegExp]'; } exports.isRegex = isRegex; //# sourceMappingURL=utils.js.map