Nyx String Utilities
Nyx String Utilities offers a wide range of string processing and manipulation functions to handle a wide variety of text wrangling tasks. The library is the backbone of the Nyx Programming Language's String type, but it is also perfectly suitable for use in other projects.
Installation
npm install @nyxlang/string-utils
Usage
You can use the ES2015 import statement to include the package:
import * as su from "@nyxlang/string-utils";
Or if you need CommonJS you can require it:
const su = require("@nyxlang/string-utils");
Or simply import the individual functions you need:
// ES2015 import
import { camelCase, decodeUTF8, graphemes } from "@nyxlang/string-utils";
// CommonJS
const { camelCase, decodeUTF8, graphemes } = require("@nyxlang/string-utils");
Then simply call library functions as methods on the su
object:
camelcase("++this-__is-spartaaaaa++");
// => "thisIsSpartaaaaa"
graphemes("अनुच्छेद");
// => ["अ", "नु", "च्", "छे", "द"]
decodeUTF8([0xf0, 0x9f, 0x98, 0x80, 0xf0, 0x9f, 0x98, 0x81]);
// => "😀😁"