Files
pixelheros/extensions/Excel转JSON/node_modules/atomically/dist/utils/lang.js
walkpan 8f57f57c1d dd
2024-08-18 23:38:55 +08:00

17 lines
356 B
JavaScript

"use strict";
/* LANG */
Object.defineProperty(exports, "__esModule", { value: true });
const Lang = {
isFunction: (x) => {
return typeof x === 'function';
},
isString: (x) => {
return typeof x === 'string';
},
isUndefined: (x) => {
return typeof x === 'undefined';
}
};
/* EXPORT */
exports.default = Lang;