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

@evoja/ns-plain

v0.0.2

Published

## How to use ```js import {namespace, access, assignInPlace, appendInPlace, assign, escapeKey, unescapeKey} from '@evoja/ns-plain'

Downloads

695

Readme

ns-plain npm version Build Status

How to use

import {namespace, access, assignInPlace,
    appendInPlace, assign, escapeKey, unescapeKey} from '@evoja/ns-plain'

## Functions

### assign
`assign(path_to_subobj, obj, value)`

Clones object and replaces deep value by new one. Keeps all other fields the same.
It clones every sub object in the path and just makes a link of any sub-object 
out of the path, does not do deeply copies of everything.

Complexity is O(N1+N2+...+Nk) where Ni is number of keys on every level of the path. In future we are going to support immutable-js.

##### Examples
```js
assign('a.b', {a: {b: 1, c: 2}, d: {e: 3}}, 100)
// => {
//   a: {
//     b: 100,
//     c: 2
//   },
//   d: {e: 3}
// }

assign('a.b', {}, 100)
// => {a: {b: 100}}

access

access(path_to_subobj, obj)

Extracts the subobject. It does not modify the object and any subobject.

Examples
access('a.b', {a: {b: 1, c: 2}})
// => 1

var obj = {}
access('a.b', obj)
// => undefined, obj = {}

namespace

namespace(path_to_subobj, obj)

Extracts the substate or create new one. It modifies the object and creates deep object with chain of all subobjects.

If obj is undefined it creates subobj in window.

Examples
namespace('a.b', obj)
// => {}, obj = {a: {b: {}}}

namespace('a.b')
// window.a.b <= {}

assignInPlace

assignInPlace(path_to_subobj, value, context)

Replaces deep value in the context by changing it. Keeps all other fields the same. It creates sub objects if it's necessary.

If context is undefined it gets global object (window or global)

Examples
assignInPlace('a.b', 100, {a: {b: 1, c: 2}, d: {e: 3}})
// => {
//   a: {
//     b: 100,
//     c: 2
//   },
//   d: {e: 3}
// }

assignInPlace('a.b', 100, {})
// => {a: {b: 100}}

appendInPlace

appendInPlace(path_to_subobj, value, context)

Appends new fields to a deep object in the context. Keeps all other fields the same. It creates sub objects if it's necessary.

If context is undefined it gets global object (window or global)

Returns undefined

Examples
appendInPlace('a.b',
              {y: 20, z: 30},
              {a: {b: {x: 1, y: 2}, c: 2}, d: {e: 3}})
// => {
//   a: {
//     b: {
//       x: 1,
//       y: 20,
//       z: 30
//     },
//     c: 2
//   },
//   d: {e: 3}
// }

appendInPlace('a.b', {y: 20, z: 30}, {})
// => {a: {b: {y: 20, z: 30}}}

Escaping periods

To escape periods and slashes in key names use slashes:

access('a.b\\.\\\\', {a: {'b.\\': 1, c: 2}})
// => 1

escapeKey

escapeKey('.')         // -> '\\.'
escapeKey('\\')        // -> '\\\\'
escapeKey('\\...\\\\') // -> '\\\\\\.\\.\\.\\\\\\\\'

unescapeKey

unescapeKey('\\.')    // -> '.'
unescapeKey('\\\\')   // -> '\\'
unescapeKey('\\')     // -> '\\'
unescapeKey('.')      // -> '.'
unescapeKey('\\\\\\.\\.\\.\\\\\\\\') // -> '\\...\\\\'