1.0.0 • Published 1 year ago

@onesy/meta v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Getting started

Add

yarn add @onesy/meta

Use

  import OnesyMeta from '@onesy/meta';

  const object = {};

  OnesyMeta.add('a', 'a', object);
  OnesyMeta.add('a', 'a4', object, 'p');

  OnesyMeta.get('a', object);
  OnesyMeta.get('a', object, 'p');

  // Output
  // 'a'
  // 'a4'

Dev

Install

yarn

Test

yarn test

Prod

Build

yarn build