@oneline/utils

oneline工具库

Usage no npm install needed!

<script type="module">
  import onelineUtils from 'https://cdn.skypack.dev/@oneline/utils';
</script>

README

@oneline/utils

常用的工具包: 项目中常用的工具函数(后端/前端).

例子

import {sortKey} from '@oneline/utils';
 
const object = {
   b: 1,
   a: 20
}

const sortedObject = sortKey(object);
// the result is {a: 20, b: 1}

加密相关

todo

数据识别

todo

正则相关

todo

校验相关

todo

URL相关

todo

日期相关

todo

数组相关