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

Package detail

commons-ts

burakisik55ISC1.0.21TypeScript support: included

Common functions to enhance developer productivity and efficiency.

typescript, string utils, integer utils, random utils, array utils, io utils

readme

commons-ts

A collection of reusable utility functions for TypeScript and JavaScript development

How to install

$ npm install commons-ts --save

How to use

typescript

import { isNullOrEmpty } from "commons-ts";

isNullOrEmpty("foo");

javascript

var commons = require("commons-ts")

commons.isNullOrEmpty("foo");