jsmp-infrastucture-name
v1.0.2
Published
A homework for creating npm module.
Downloads
2
Readme
Module can be used in the next way:
import { chunkArray, repeatString } from 'jsmp-infrastucture-name';
const arr = [1,2,3,4]; const str = '1';
chunkArray(arr, 2); // Output [[1,2],[3,4]] repeatString(str, 2); // Output '111'