Home Manual Reference Source

Overview

Installation

Can be managed using yarn, npm, or jspm.

yarn

yarn add @aureooms/js-string

npm

npm install @aureooms/js-string --save

jspm

jspm install npm:@aureooms/js-string

Usage

:warning: The code requires regeneratorRuntime to be defined, for instance by importing regenerator-runtime/runtime.

First, require the polyfill at the entry point of your application

require( 'regenerator-runtime/runtime' );
// or
import 'regenerator-runtime/runtime.js' ;

Then, import the library where needed

const string = require( '@aureooms/js-string' ) ;
// or
import * as string from '@aureooms/js-string' ;

Examples

More examples in the test files.