hexo/node_modules/atomically/dist/utils/lang.js

17 lines
372 B
JavaScript
Raw Normal View History

2023-10-03 11:14:36 +08:00
"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;