Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tiny-coerce

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tiny-coerce

Tiny coercion library for Client or Server

  • 1.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
40
decreased by-79.38%
Maintainers
1
Weekly downloads
 
Created
Source

Tiny Coerce

build status

String to primitive coercion for Client or Server. It's great for DOM data attributes, localStorage, and other cases where your need to store a String.

API

coerce (arg[, deep = false])

Returns a coercion of arg. Deep coercion is optional with the second parameter.

First parameter is trimmed before coercion!

Example

const coerce = require("tiny-coerce");

console.log(coerce("true")); // true
console.log(coerce("null")); // null
console.log(coerce({a: {b: "50"}}, true).a.b) // 50

License

Copyright (c) 2018 Jason Mulligan Licensed under the BSD-3 license

Keywords

FAQs

Package last updated on 08 Jul 2018

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc