UNPKG

compare-utf8

Version:

Compares JS strings using UTF-8 bitwise semantics

42 lines (41 loc) 1.05 kB
{ "name": "compare-utf8", "version": "0.1.1", "description": "Compares JS strings using UTF-8 bitwise semantics", "type": "module", "main": "src/index.js", "scripts": { "build-dts": "rm -f src/*.d.ts && tsc --emitDeclarationOnly && prettier src/*.d.ts --write", "build": "npm run build-dts", "format": "prettier *.json src/ --write", "prepare": "npm run build && npm run format", "prepack": "npm run prepare", "test": "mocha src" }, "repository": { "type": "git", "url": "git+https://github.com/rocicorp/compare-utf8.git" }, "keywords": [ "UTF-8", "UTF8", "compare", "string" ], "author": "arv@rocicorp.dev", "license": "Apache-2.0", "bugs": { "url": "https://github.com/rocicorp/compare-utf8/issues" }, "homepage": "https://github.com/rocicorp/compare-utf8#readme", "devDependencies": { "mocha": "^10.2.0", "prettier": "^2.6.2", "typescript": "^4.7.2" }, "exports": "./src/index.js", "files": [ "src/index.js", "src/index.d.ts" ] }