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

@jetstech/utils

v0.1.1

Published

VueJS frontend helper functions

Downloads

2

Readme

Utils

VueJS frontend helper functions.

Usage

Installation

npm i @jetstech/utils

API

#hasProperty()

s → {s: x} → Boolean

Returns whether or not an object has an own property with the specified name.

hasProperty('name', {name: 'Alice'}); //=> true
hasProperty('name', {name: 'Bob'});   //=> true
hasProperty('name', {});              //=> false

const point = {x: 0, y: 0};
hasProperty('x', point); //=> true
hasProperty('y', point); //=> true
hasProperty('z', point); //=> false

#objToArray()

DEPRECATED/RENAMED

({String: {y: ...}}, String) → [{x: String, y: ...}]

Transforms an object with nested objects into an array of objects, where the specified top-level key becomes a property of that object.

const obj = {
  '1': { x: 1 },
  '2': { x: 1 },
};

assocByKey(obj, 'key');
//=> [{ 'key': 1, 'x': 1 }, { 'key': 2, 'x': 1 }]

See also assocByKey.

#assocByKey()

({String: {y: ...}}, String) → [{x: String, y: ...}]

Transforms an object with nested objects into an array of objects, where the specified top-level key becomes a property of that object.

const obj = {
  '1': { x: 1 },
  '2': { x: 1 },
};

assocByKey(obj, 'key');
//=> [{ 'key': 1, 'x': 1 }, { 'key': 2, 'x': 1 }]

#uid()

s → String

String → String

Returns a new string with a hash appended to an input string.

uid('hello');     //=> hello-625255399542
uid('something'); //=> something-820055635071

#iterate()

DEPRECATED/RENAMED

Functor f => (a → b) → f a → f b

Takes a function and a functor, applies the function to each of the functor's values, and returns a functor of the same shape.

This is a suitable map implementation for Array and Object, so this may be applied to [1, 2, 3] or {x: 1, y: 2, z: 3}

const double = x => x * 2;

iterate(double, [1, 2, 3]);         //=> [2, 4, 6]
iterate(double, {x: 1, y: 2, z: 3}) //=> {x: 2, y: 4, z: 6}

See also map

#map()

Functor f => (a → b) → f a → f b

Takes a function and a functor, applies the function to each of the functor's values, and returns a functor of the same shape.

This is a suitable map implementation for Array and Object, so this may be applied to [1, 2, 3] or {x: 1, y: 2, z: 3}

const double = x => x * 2;

map(double, [1, 2, 3]);         //=> [2, 4, 6]
map(double, {x: 1, y: 2, z: 3}) //=> {x: 2, y: 4, z: 6}

#clone()

{*} → {*}

Creates a deep copy of the value which may contain (nested) Arrays and Objects, Numbers, Strings, Booleans, and Dates. Functions are assigned by reference rather than copied. Can be very useful for default preferences and updating preferences.

BUG(rfc): The current implementation does not clone Date objects. This will be fixed in the future.

const objects = [{}, {}, {}];
const objectsClone = clone(objects);

objects === objectsClone;       //=> false
objects[0] === objectsClone[0]; //=> false

#compare()

DEPRECATED/RENAMED

a → b → Boolean

Returns true if its arguments are equivalent, false otherwise. Handles cyclical data structures.

compare(1, 1);                 //=> true
compare(1, '1');               //=> false
compare([1, 2, 3], [1, 2, 3]); //=> true

See also equals

#equals()

a → b → Boolean

Note: uses fast-deep-equal under the hood

Returns true if its arguments are equivalent, false otherwise. Handles cyclical data structures.

equals(1, 1);                 //=> true
equals(1, '1');               //=> false
equals([1, 2, 3], [1, 2, 3]); //=> true