Socket
Socket
Sign inDemoInstall

coerce

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coerce


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

Coerce

Simple chaining style type validator inspired by Waleed's Purify python library

Features

  • light-weight
  • can be used via node or browser
  • geared to make code more readable & reusable

Usage

If you use node:

var c = require('coerce');
var easyInt = c().strip().int();
easyInt.coerce("   123   ") ---> 123
easyInt.default(456).coerce("asdf") ---> 456

If you use a web browser:

<script src="coerce.js"></script>
<script>
  var c = coerce().strip().int();
  var myInteger = c.coerce("   123   ");
</script>

FAQs

Package last updated on 07 Sep 2011

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