1.0.4 • Published 2 years ago

snowflake-regex v1.0.4

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Snowflake

Snowflake Regex

Generates a regex for Discord Snowflakes, its pretty simple

Usage

const snowflakeRegex = require("snowflake-regex"); // For ES6/TS use import snowflakeRegex, { generate } from 'snowflake-regex'
snowflakeRegex.default.test("296776625432035328"); // true
snowflakeRegex.default.test("balls 296776625432035328"); // false

const customSnowflakeRegex = snowflakeRegex.generate({
  exact: false,
  global: true,
  multiline: true
});

customSnowflakeRegex.test("balls 296776625432035328"); // true
"balls 296776625432035328".match(customSnowflakeRegex); // [ '296776625432035328' ]
"balls 296776625432035328".match(snowflakeRegex.default); // null
1.0.2

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.1

3 years ago

1.0.0

3 years ago