Git Product home page Git Product logo

xe-utils's Introduction

xe-utils

npm version npm build npm downloads gzip size: JS npm license

javascript 函数库、工具类,提供一套实用的函数库

Browser Support

IE Edge Chrome Firefox Opera Safari
7+ ✔ Latest ✔ Latest ✔ Latest ✔ Latest ✔ 6.1+ ✔

Docs

查看文档 API

Installing

npm install xe-utils

Using nodejs

const XEUtils = require('xe-utils')

Get on unpkg and cdnjs

<script src="https://cdn.jsdelivr.net/npm/xe-utils"></script>

Import all methods

import XEUtils from 'xe-utils'

XEUtils.toDateString(Date.now()) // 2018-01-01 10:30:28
XEUtils.toStringDate('2018-01-01 10:30:00') // Mon Jan 01 2018 10:30:00 GMT+0800 (**标准时间)

Import on demand

By introducing the method as needed, the volume can be minimized.
这样按需引入方法,可以使体积达到最小

单个导入,包的大小 gzip >≈ 60B 起步,按需导入,不浪费一丝空间
Single import, package size gzip >≈ 60B start, import as needed, no waste of space.

import XEUtils from 'xe-utils/methods/xe-utils'
import each from 'xe-utils/methods/base/each'
import toDateString from 'xe-utils/methods/date/toDateString'
import toFixedNumber from 'xe-utils/methods/number/toFixedNumber'

XEUtils.mixin({
  each,
  toDateString,
  toFixedNumber
})

XEUtils.toDateString(Date.now(), 'yyyy-MM-dd HH:mm:ss') // 2018-01-01 10:30:28

Import all methods by methods
按功能导入所有方法

import XEUtils from 'xe-utils/methods/xe-utils'
import objectMethods from 'xe-utils/methods/object'
import arrayMethods from 'xe-utils/methods/array'
import baseMethods from 'xe-utils/methods/base'
import numberMethods from 'xe-utils/methods/number'
import dateMethods from 'xe-utils/methods/date'
import stringMethods from 'xe-utils/methods/string'
import functionMethods from 'xe-utils/methods/function'
import urlMethods from 'xe-utils/methods/url'
import browseMethods from 'xe-utils/methods/browse'

XEUtils.mixin(
  // object
  objectMethods,
  // array
  arrayMethods,
  // base
  baseMethods,
  // number
  numberMethods,
  // date
  dateMethods,
  // string
  stringMethods,
  // function
  functionMethods,
  // url
  urlMethods,
  // browse
  browseMethods
)

XEUtils.toStringDate('2018-01-01 10:30:28') // Mon Jan 01 2018 10:30:28 GMT+0800 (**标准时间)

License

MIT License, 2017-present, Xu Liangzhan

xe-utils's People

Contributors

xuliangzhan avatar

Stargazers

dingding avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.