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

string-constants

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

string-constants

Various string constants definitions for easy use

  • 0.0.12
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
increased by150%
Maintainers
1
Weekly downloads
 
Created
Source

string-constants

NPM Version

Various string definitions for easy use

Install

npm install string-constants

bower install string-constants

Usage

CommonJS

var stringConstants = require('string-constants');

/**
 * stringConstants variable now contains following properties:
 *
 * whitespace: All characters considered whitespace
 * lowercase: All characters considered lowercase letters
 * uppercase: All characters considered uppercase letters
 * asciiLowercase: All characters considered lowercase ascii
 * asciiUppercase: All characters considered uppercase ascii
 * asciiLetters: All characters considered ascii
 * letters: All characters considered letters
 * digits: All characters considered decimal digits
 * hexdigits: All characters considered hexadecimal digits
 * octdigits: All characters considered octal digits
 * punctuation: All characters considered punctuation
 * printable: All characters considered printable
 */

console.log(stringConstants.digits);
// 0123456789

Browser

Include script from bower_components/string-constants/string-constants.js

This will expose stringConstants variable to current context

console.log(this.stringConstants.digits);
// 0123456789

AMD

define(['path-here'], function (stringConstants) {
  
});

License

MIT © Amanpreet Singh

Keywords

FAQs

Package last updated on 20 Jun 2016

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