source: trip-planner-front/node_modules/@babel/helper-create-regexp-features-plugin/lib/features.js@ e29cc2e

Last change on this file since e29cc2e was e29cc2e, checked in by Ema <ema_spirova@…>, 3 years ago

primeNG components

  • Property mode set to 100644
File size: 759 bytes
Line 
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.FEATURES = void 0;
7exports.enableFeature = enableFeature;
8exports.featuresKey = void 0;
9exports.hasFeature = hasFeature;
10exports.runtimeKey = void 0;
11const FEATURES = Object.freeze({
12 unicodeFlag: 1 << 0,
13 dotAllFlag: 1 << 1,
14 unicodePropertyEscape: 1 << 2,
15 namedCaptureGroups: 1 << 3
16});
17exports.FEATURES = FEATURES;
18const featuresKey = "@babel/plugin-regexp-features/featuresKey";
19exports.featuresKey = featuresKey;
20const runtimeKey = "@babel/plugin-regexp-features/runtimeKey";
21exports.runtimeKey = runtimeKey;
22
23function enableFeature(features, feature) {
24 return features | feature;
25}
26
27function hasFeature(features, feature) {
28 return !!(features & feature);
29}
Note: See TracBrowser for help on using the repository browser.