chance-object

1.0.1 • Public • Published

chance-object Build Status

A Chance.js mixin to generate objects.

Install

NPM

$ npm i chance-object

Yarn

$ yarn add chance-object

Usage

import Chance from 'chance';
import object from 'chance-object';
 
const chance = new Chance();
 
chance.mixin({
    object
});
 
chance.object();

By default, chance-object will return a randomly generated object.

Example:

{
    randomKey: 'randomValue';
}

chance-object can also take an optional object as a parameter, which will create a randomly generated object and merge it with the supplied object.

Example:

chance.object({
    key: 'value'
});

Result:

{
    randomKey: 'randomValue',
    key: 'value'
}

License

MIT © Michael Novotny

Package Sidebar

Install

npm i chance-object

Weekly Downloads

116

Version

1.0.1

License

MIT

Unpacked Size

5.52 kB

Total Files

14

Last publish

Collaborators

  • manovotny