@abetomo/mask-value
TypeScript icon, indicating that this package has built-in type declarations

1.2.0 • Public • Published

node-mask-value

npm version Test

Mask the value of the object.

Install

% npm i @abetomo/mask-value

Examples

import { mask, masks, Config } from '@abetomo/mask-value'

type User = {
  name: string
  address: string
}

const data: User[] = [
  {
    name: 'name1',
    address: 'address1'
  },
  {
    name: 'name2',
    address: 'address2'
  }
]

const config: Config = {
  path: '.[].name',
  action: () => Math.random()
}

console.log(mask<User[]>(data, config))
/*
Output:
[
  { name: 0.913236932864554, address: 'address1' },
  { name: 0.6970620876451457, address: 'address2' }
]
*/


const configs: Config[] = [
  {
    path: '.[].name',
    action: () => Math.random()
  },
  {
    path: '.[].address',
    action: (s: string) => s.length * Math.random()
  }
]

console.log(masks<User[]>(data, configs))
/*
Output:
[
  { name: 0.4253394097546368, address: 4.285149904757429 },
  { name: 0.7394228798993354, address: 6.334446902953465 }
]
*/

Readme

Keywords

Package Sidebar

Install

npm i @abetomo/mask-value

Weekly Downloads

0

Version

1.2.0

License

MIT

Unpacked Size

5.71 kB

Total Files

5

Last publish

Collaborators

  • abetomo