@bluejay/utils
TypeScript icon, indicating that this package has built-in type declarations

4.0.0 • Public • Published

Utils

npm npm npm

General purpose utilities for Bluejay modules.

Requirements

  • node >= 8.6, tested with:
    • node@8.6.0
    • node@12.8.1
  • typescript >= 4.0, tested with:
    • typescript@4.0.2

Installation

npm i @bluejay/utils [--save]

Usage

import * as Utils from '@bluejay/utils';

Utils.makeArray(1); // [1]

Using the name export.

import { Utils } from '@bluejay/utils';

Utils.makeArray(1); // [1]

Or directly.

import { makeArray } from '@bluejay/utils';

makeArray(1); // [1]

Documentation

See Github Pages.

Readme

Keywords

Package Sidebar

Install

npm i @bluejay/utils

Weekly Downloads

1

Version

4.0.0

License

MIT

Unpacked Size

13.3 kB

Total Files

24

Last publish

Collaborators

  • asifarran
  • bluebirds