Encapsulation of common tool classes。
常用工具类封装。
npm install neky-utils --save
import _u from 'neky-utils'
import type from 'neky-utils/type'
import {type} from 'neky-utils'
// type Use alone
// 单独使用type类
var _u = require('neky-utils');
var _type = require('neky-utils/type');
// _type Use alone
// 单独使用type类
<script src="../node_modules/neky-utils/dist/index.js"></script>
// _u Global injection
// _u函数将会全局注入
// window._u
import _u from 'neky-utils'
_u.type.isNumber(111)
// true
_u.type.isNumber('aaa')
// false
MIT