0.5.0 • Published 7 months ago

loong-js v0.5.0

Weekly downloads
-
License
MIT
Repository
-
Last release
7 months ago

常用工具库

使用者指南

通过 npm 下载安装代码

$ npm install --save loong-js

如果你是 node 环境

var { truncate } = require('loong-js');

truncate('123456', 5);

如果你是 webpack 等环境

import { truncate } from 'loong-js';

truncate('123456', 5);

import loong from 'loong-js';

loong.truncate('123456', 5);

如果你是浏览器环境

<script src="node_modules/loong-js/dist/index.aio.js"></script>
<script>
  loong.truncate('123456', 5);
</script>

在线文档 Github 在线文档 Gitee

0.3.0

8 months ago

0.5.0

7 months ago

0.4.0

8 months ago

0.2.0

8 months ago

0.1.0

8 months ago