🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

hidden-state

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hidden-state

Attach hidden state to object instances

2.1.1
latest
Version published
Weekly downloads
18
-25%
Maintainers
1
Weekly downloads
 
Created

hidden-state

Attach hidden state to object instances.

Example

import { hiddenState } from 'hidden-state';

const [getState, initState, hasState] = hiddenState('Point');

class Point {

  constructor(x, y) {
    initState(this, { x, y });
  }

  toString() {
    let { x, y } = getState(this);
    return `<${ x }:${ y }>`;
  }

  add(point) {
    let { x: x1, y: y1 } = getState(this);
    let { x: x2, y: y2 } = getState(point);
    return new Point(x1 + x2, y1 + y2);
  }

  static isPoint(obj) {
    return hasState(obj);
  }

}

Install

npm install hidden-state

API

hiddenState(typeName?)

Returns an array containing functions that can be used to access the hidden state of an object. The optional typeName argument is used to customize TypeError messages.

const [getState, initState, hasState] = hiddenState('MyType');

The following functions are returned:

getState(obj)

Returns the hidden state associated with the specified object. If the object does not have hidden state then a TypeError is thrown.

initState(obj, state)

Initializes the hidden state for an object. A TypeError is thrown if state is undefined. An Error is thrown if hidden state has previously been initialized for the object.

hasState(obj)

Returns a boolean value indicating whether the object has associated hidden state.

FAQs

Package last updated on 07 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts