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

css-class-generator

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

css-class-generator

Generates a sequential, valid CSS class, generating the next smallest class names possible

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

css-class-generator

Maps a given index to a unique valid CSS. Uses the smallest class names possible, with lower indices having smaller class names.

npm install --save css-class-generator

API

cssClassGenerator(index, prefix = '') -> string

Class names are not random - a given index will always return the same class name.

Class names are generated without a leading ..

The prefix option gives more optimal class names than prefix + cssClassGenerator(index). It never returns the prefix alone - it's always appended with something. In development, it will console.warn if prefix is not a valid class name (unless the prefix is -).

Be careful for high values (2 ** 30 and above), as JavaScript integer vs float quirks can happen.

Example

const cssClassGenerator = require("css-class-generator");

cssClassGenerator(0); // 'a'
cssClassGenerator(1); // 'b'
cssClassGenerator(52); // '_'
cssClassGenerator(53); // '-a'
cssClassGenerator(10000); // K3c
cssClassGenerator(1e9); // CVJ2gb

cssClassGenerator(0, "hello"); // 'helloa'
cssClassGenerator(1, "hello"); // 'hellob'

Keywords

FAQs

Package last updated on 08 May 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

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