Socket
Socket
Sign inDemoInstall

rheactor-value-objects

Package Overview
Dependencies
2
Maintainers
3
Versions
36
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    rheactor-value-objects

A collection of value objects


Version published
Maintainers
3
Install size
51.1 kB
Created

Readme

Source

rheactor-value-objects

Build Status monitored by greenkeeper.io js-standard-style semantic-release Test Coverage Code Climate

NPM

A collection of value objects

Common API

ValueType()

This method exposes a tcomb type validation base on instanceof or the name of the type and it's properties.

Note that instanceof can't be used always because having this check will return false, because the application using the value-objects package will create an instance that Node.js thinks to be from a different location that the one referenced in this package's uri.js

# app.js
const URIValue = require('rheactor-value-objects/uri')
let u = new URIValue(…)
URIValue.Type(u) // will fail

# uri.js
URIValue.Type = t.irreducible('URIValue', (x) => x instanceof URIValue)

.equals()

You can compare two value objects with the .equals() method:

const ex = new URIValue('https://example.com') 
ex.equals(new URIValue('https://example.com')) // -> true
ex.equals(new URIValue('https://acme.com'))    // -> false

.is()

You can check if a given value is of this value object:

const ex = new URIValue('https://example.com') 
URIValue.is(ex)    // -> true
DomainValue.is(ex) // -> false

FAQs

Last updated on 02 Mar 2017

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc