1.0.0 • Published 4 years ago

jsmp-infra-sirash v1.0.0

Weekly downloads
3
License
ISC
Repository
-
Last release
4 years ago

#SJMP-INFRA-SIRASH

#DESCRIPTION

Has a set of two functions which take string (concatString) or array (findDifference).

  • concatString have ability concat passed strings.
  • findDifference have ability find difference between passed arrays

#INSTALLATION

try npm i jsmp-infra-sirash

or yarn add jsmp-infra-sirash

#EXAMPLES

You need to import this package into your project

import transformer from 'jsmp-infra-sirash'; //ES6 modules

const helper = require('jsmp-infra-sirash'); //Old-fashioned syntax

Next you could just use it like this:

concatString('1', '2', '3') // 123
concatString('test') // test
findDifference([1, 2, 3], 1, 2) // [3];
findDifference([100, 500, 501, 333333, 0.1], 100, 200, 300, 400, 500, 600) // [501, 333333, 0.1]
1.0.0

4 years ago

0.7.0

4 years ago

0.6.0

4 years ago

0.5.0

4 years ago

0.4.0

4 years ago

0.3.0

4 years ago

0.2.0

4 years ago

0.1.0

4 years ago