lang.js 356 B

1234567891011121314151617
  1. "use strict";
  2. /* LANG */
  3. Object.defineProperty(exports, "__esModule", { value: true });
  4. const Lang = {
  5. isFunction: (x) => {
  6. return typeof x === 'function';
  7. },
  8. isString: (x) => {
  9. return typeof x === 'string';
  10. },
  11. isUndefined: (x) => {
  12. return typeof x === 'undefined';
  13. }
  14. };
  15. /* EXPORT */
  16. exports.default = Lang;