npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bian

v0.0.6

Published

Data transformation

Downloads

5

Readme

Bian

collection of often-used data transformation methods.

Static methods

identity(any) : any

identity function.

compose([functions]): function

reduce functions from right to left.

splats(function): function

convert a function originally receives multiple arguments to a compressed array as argument

Bian.splats((a, b, c) => a + b + c)([1, 2, 3]);
// 6

unsplats(function): function

convert a function originally receive array as arguments to the splatted array as arguments, like spread

Bian.unsplats(arr => arr.join('-'))('first', 'second', 'third');
// 'first-second-third'

Array methods

pick(propName) : array

pick a property from list of objects.

[{name: 'js'},  {name: 'php'}, {name: 'scala'}].bian().pick('name').toValue(); 

// ['js', 'php', 'scala'];

compact : array

filter out not trucy element in an array.

['first', NaN, '', false, 0, undefined, null, 'last'].bian().compact().toValue();

// ['first', 'last']

unique : array

make unique of an array.

chunk(size) : array

split an array into groups by given size.

[ 1, 2, 3, 4, 5 ].bian().chunk(2).toValue();

// [[1,2], [3,4], [5]]

zip : array

Creates an array of grouped elements, the first of which contains the first elements of the given arrays, the second of which contains the second elements of the given arrays, and so on.

[[1,2,3], [true, false]].bian().zip().toValue(),
// [[1, true], [2, false], [3, undefined]]

[[], [true, false, 'string'], ].bian().zip().toValue(),
// [[undefined, true], [undefined, false], [undefined, 'string']]

head : any

get the first element of an array.

initial : array

get all but the last element of an array.

last : any

get the last element of an array.

tail : array

get all but the first element of an array.

Object methods

values : array

grab the values of an object

{ firstName: 'fei', lastName: 'liu', city: 'munich' }.bian().values().toValue();

// ['fei', 'liu', 'munich'] 

valuesIf(pred):array

get object values as array when the value sacrifices the predicate.

pair : array

turn object into list of a two-dimensional array [ [key, value], [key, value], ... ]

entry([array=['key', 'value']]) : array

turn object into a list of object with predefined key and value property [ {customkey: key, customValue: value}, ...]