mapper-json
TypeScript icon, indicating that this package has built-in type declarations

0.0.3 • Public • Published

Mapper-JSON

将一个json 通过 规则定义,生产两一个 json

使用方式

import MapperJson from 'mapper-json'
 
// 数据
const source = {
  foo: 'bar',
  t1: 1,
  t2: 't2',
  numstr: '12.1',
  str_arr: '1|2|1|3',
  category: 'shehui',
};
 
// 规则
const rules = {
  baz: 'foo',
  arr: ['t1', 't2'],
  switch: [
    {
      op: 'switch',
      options: [
        {
          result: '社会',
          leftSelect: 'category',
          operation: 'eq',
          rightValue: 'shehui'
        }
      ]
    },
  ],
}
 
// 转换
const result = MapperJson.tranWithRules(source, rules);
 
// or
const mapperJsonInstance = new MapperJson(rules);
const result = mapperJsonInstance.trans(source);
 
// const result = {
//   baz: 'bar',
//   arr: [1, 't2'],
//   switch: ['社会']
// };
 
 

Readme

Keywords

none

Package Sidebar

Install

npm i mapper-json

Weekly Downloads

2

Version

0.0.3

License

MIT

Unpacked Size

44.6 kB

Total Files

9

Last publish

Collaborators

  • theone1006