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

sxy-standard

v1.0.12

Published

`yarn add sxy-standard`

Downloads

57

Readme

sxy-standard - JS Standard Library

yarn add sxy-standard

to import all core functions: import 'sxy-standard' to import everything functions: import 'sxy-standard/all'

--pure ( The functions changes no data, only returning a result, and will give the same result every time with the same set of arguments ) --no-side-effects ( The functions changes no data, only returning a result, but may not give the same result each time with the same set of arguments ) --side-effects ( ) --deterministic ( ) --non-deterministic ( )

Objects

to import only object functions: import 'sxy-standard/objects.js'

Object.map

--pure Map an object to a new object. Keys are preserved. See Array.prototype.map

In: object, function(key, value, orginialObject) => newValue Out: object

Object.map( { a: 1, b: 3 }, (key, value) => value * 3 ) ) // returns { a: 3, b: 9 }

Object.remap

--pure Map an object to a new object, with the ability to change keys.

In: object, function(key, value, orginialObject) => [newKey, neyValue] Out: object

Object.map( { a: 1, b: 3 }, (key, value) => [key + key, value * 3] ) ) // returns { aa: 3, bb: 9 }

Object.reduce

--pure Reduce an object into a single value or item. See Array.prototype.reduce

In: object, function(key, value, orginialObject) => compositeValue, initialCompositeValue Out: "compositeValue" as returned by the function

Object.reduce( { a: 1, b: 3 }, (composite, key, value) => composite + value ), 0 ) // returns 4

Object.forEach

--pure Run a function for each item in the object. Note that the key and value arguments passed to the callback are in the opposite order. Think of arrays as being value orientied, but key being important in objects. See Array.prototype.forEach

Note: I recommend using Assoc instead. This has the benefit of avoiding confusion over argument ordering.

In: object, function(key, value, originalObject) => void Out: void

Object.forEach( { a: 1, b: 3 }, (key, value) => console.log(${key}: ${value}) ) // logs: // a: 1 // b: 33

Object.copy

--pure Alias to lodash.cloneDeep. Clones the object including deep objects. This allows truly coping an object where a tool like the spread operator would fail due to only copying the first level of childrens, while inheriting references to the original inner contents. See https://lodash.com/docs/4.17.15#cloneDeep

Object.clone exists as an alias for Object.copy Object.deepClone exists as an alias for Object.copy

Object.clone( { a: 1, b: 3 } ) // returns a new object { a: 1, b: 3 } // see the description above for more information

Assoc

to import only Assoc: import 'sxy-standard/assoc.js'

Assoc is a class of iterable object / associative array. It is identical to an ordinary object, except that it can be iterated with for ... of ...

const assoc = new Assoc({ a: 1, b: 3 })

for (const key of assoc) { console.log(key) } // logs // a // b

for (const [key, value] of assoc) { console.log(${key}: ${value}) } // logs // a: 1 // b: 3

Compared to Object.entries()

const assoc = new Assoc({ a: 1, b: 3 }) for (const [key, value] of assoc)

is equivalent to:

const obj = { a: 1, b: 3 } for (const [key, value] of Object.entries(obj))

Promises

to import only object functions: import 'sxy-standard/promises.js'

Promise.allObj

--pure ( the promises passed may not be ) Return a promise that resolves when all promises passed complete, and returns an object populated with the results paired to the keys of the original promise object. See Promise.all

In: object { key: promise, ... }, Out: object { key: promiseResult, ... }

const promiseA = new Promise( (resolve) => setTimeout(() => resolve(1), 1000) ) const promiseB = new Promise( (resolve) => setTimeout(() => resolve(3), 2000) ) Promise.allObj( { a: promiseA, b: promiseB }, ).then ( results => /* do something */ ) // After 2 seconds the promise will complete and results will be { a: 1, b: 3 }

Utils

to import only util functions: import 'sxy-standard/utils.js'

sxy.calledFrom

--pure Retuns the file location where the current script/function was called/loaded from. Functions passed in ignoredFunctions are ignored (if the current script/function was called from that function, calledFrom() will continue to find the previous call location). If passed, the number of calls specified in skip will be skipped, returning an earlier call location. Functions excluded in ignoredFunctions are not counted as skipped. Skipped calls are additional.

In: object { ignoredFunctions?: [function, ...], skip?: int } Out: sxy.calledFrom()

/extra - Extra Functions

yarn add sxy-standard

to import all extras: import 'sxy-standard/extra'

Extra / Web

to import only extra/web functions: import 'sxy-standard/extra/web.js'

sxy.standardizeWebPath

--pure Takes a web path such as /home/ and standardizes it. Leading slashes are added, trailing slashes are removed

In: string Out: string

'' -> '/' '/' -> '/' '//' -> '/' '///' -> '//' ( ! ) '/home/' -> '/home' 'index.html' -> '/index.html'