1.0.7 • Published 7 years ago

blet v1.0.7

Weekly downloads
-
License
ISC
Repository
github
Last release
7 years ago

blet

Make 'blet' great again.

Usage

blet(element[, bletPosition]);

element(String, Number, Array, Object, Date) - any js String, Number, Array, Object or Date.
bletPosition(String) - {start|end} optional, "end" by default.

Require

const blet = require("blet");

blet('str'); // -> "strBlet"
blet(2, 'start'); // -> "blet2"
blet([1, 2, "3"]); // -> ["1Blet", "2Blet", "3Blet"]
blet({ test1: '1', test2: '2', test3: '3' }); // -> ["1Blet", "2Blet", "3Blet"]
blet(new Date()) // -> "blet"

ES6 imports

import blet from 'blet';

blet('str'); // -> "strBlet"
blet(2, 'start'); // -> "blet2"
blet([1, 2, "3"]); // -> ["1Blet", "2Blet", "3Blet"]
blet({ test1: '1', test2: '2', test3: '3' }); // -> ["1Blet", "2Blet", "3Blet"]
blet(new Date()) // -> "blet"
1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago