babel/packages/babel-plugin-proposal-unicode-property-regex
2018-01-09 15:36:42 +01:00
..
2018-01-09 15:36:42 +01:00
2018-01-08 11:02:14 -05:00

@babel/plugin-proposal-unicode-property-regex

Compile Unicode property escapes (\p{…} and \P{…}) in Unicode regular expressions to ES5 or ES6 that works in todays environments.

Note: the Unicode property escape syntax is non-standard and may or may not reflect what eventually gets specified.

Heres an online demo.

Installation

npm install --save-dev @babel/plugin-proposal-unicode-property-regex

Usage

.babelrc

{
  "plugins": ["@babel/plugin-proposal-unicode-property-regex"]
}

Via CLI

babel --plugins @babel/@babel/plugin-proposal-unicode-property-regex script.js

Via Node.js API

require("@babel/core").transform(code, {
  "plugins": ["@babel/plugin-proposal-unicode-property-regex"]
});

To transpile to ES6/ES2015:

require("@babel/core").transform(code, {
  "plugins": [
    ["@babel/plugin-proposal-unicode-property-regex", { "useUnicodeFlag": false }]
  ]
});

Options

  • useUnicodeFlag (defaults to true)

When disabled with false, the transform converts Unicode regexes to non-Unicode regexes for wider support, removing the u flag. See https://github.com/mathiasbynens/regexpu-core#useunicodeflag-default-false for more information.

Author

twitter/mathias
Mathias Bynens