npm

@sea-org/s-utils
TypeScript icon, indicating that this package has built-in type declarations

0.1.0 • Public • Published

@sea-org/s-utils

sea-nest 项目的实用类函数

Install

$ yarn add @sea-org/s-utils

Usage

import utils from '@sea-org/utils'

utils.valueFormat.getFormatter('number')(12345); // 12,345

Documentation

如何使用请参考Api

Contributing

如何贡献代码查看 CONTRIBUTING

FAQ

如何打包出符合 ES6 的 tree shaking 模式,供使用方按需加载?

  1. 在 utils 下增加.fatherrc.js

    export default {
      esm: 'babel',
      cjs: 'babel',
    };
  2. 修改package.json

    {
      "main": "lib/index.js",
      "module": "es/index.js",
      "types": "lib/index.d.ts"
    }
  3. utils/src/valueFormat.ts修改为

    import * as numeral from 'numeral';
    
    ...

Readme

Keywords

none

Package Sidebar

Install

npm i @sea-org/s-utils

Weekly Downloads

0

Version

0.1.0

License

MIT

Unpacked Size

33.4 kB

Total Files

12

Last publish

Collaborators

  • seawave