Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

handyutils

paulddrix2ISC2.3.0

a set of tool to aid development in nodejs

readme

handyutils

A set of tools to help in development

Installation

npm install handyutils --save

Usage

Debug

when debugging simply pass in a string and a object to debug

// app.js
const handyUtils = require('handyutils');

handyUtils.debug('testing',handyUtils );
handyUtils.isEmpty('testing'); // NOT EMPTY, will return false

isEmpty

when checking if something is empty, simply pass in any data type to check

// app.js
const handyUtils = require('handyutils');

handyUtils.isEmpty('testing'); // NOT EMPTY, will return false
handyUtils.isEmpty(''); // EMPTY, will return true