You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.6 KiB

1 month ago
  1. # unicode-canonical-property-names-ecmascript [![unicode-canonical-property-names-ecmascript on npm](https://img.shields.io/npm/v/unicode-canonical-property-names-ecmascript)](https://www.npmjs.com/package/unicode-canonical-property-names-ecmascript)
  2. _unicode-canonical-property-names-ecmascript_ exports the set of canonical Unicode property names that are supported in [ECMAScript RegExp property escapes](https://github.com/tc39/proposal-regexp-unicode-property-escapes).
  3. ## Installation
  4. To use _unicode-canonical-property-names-ecmascript_, install it as a dependency via [npm](https://www.npmjs.com/):
  5. ```bash
  6. $ npm install unicode-canonical-property-names-ecmascript
  7. ```
  8. Then, `require` it:
  9. ```js
  10. const properties = require('unicode-canonical-property-names-ecmascript');
  11. ```
  12. ## Example
  13. ```js
  14. properties.has('ID_Start');
  15. // → true
  16. properties.has('IDS');
  17. // → false
  18. ```
  19. ## For maintainers
  20. ### How to publish a new release
  21. 1. On the `main` branch, bump the version number in `package.json`:
  22. ```sh
  23. npm version patch -m 'Release v%s'
  24. ```
  25. Instead of `patch`, use `minor` or `major` [as needed](https://semver.org/).
  26. Note that this produces a Git commit + tag.
  27. 1. Push the release commit and tag:
  28. ```sh
  29. git push && git push --tags
  30. ```
  31. Our CI then automatically publishes the new release to npm.
  32. ## Author
  33. | [![twitter/mathias](https://gravatar.com/avatar/24e08a9ea84deb17ae121074d0f17125?s=70)](https://twitter.com/mathias "Follow @mathias on Twitter") |
  34. |---|
  35. | [Mathias Bynens](https://mathiasbynens.be/) |
  36. ## License
  37. _unicode-canonical-property-names-ecmascript_ is available under the [MIT](https://mths.be/mit) license.