mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-28 03:10:55 +00:00
30 lines
739 B
JavaScript
30 lines
739 B
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Alexander Akait @alexander-akait
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const memoize = require("./memoize");
|
|
|
|
const getVm = memoize(() => require("vm"));
|
|
|
|
module.exports.CompilerHintNotationRegExp = Object.freeze({
|
|
Pure: /^\s*(?:#|@)__PURE__\s*$/,
|
|
NoSideEffects: /^\s*[#@]__NO_SIDE_EFFECTS__\s*$/
|
|
});
|
|
|
|
/**
|
|
* regexp to match at least one "magic comment"
|
|
* @returns {import("vm").Context} magic comment context
|
|
*/
|
|
module.exports.createMagicCommentContext = () =>
|
|
getVm().createContext(undefined, {
|
|
name: "Webpack Magic Comment Parser",
|
|
codeGeneration: { strings: false, wasm: false }
|
|
});
|
|
|
|
module.exports.webpackCommentRegExp = new RegExp(
|
|
/(^|\W)webpack[A-Z][A-Za-z]+:/
|
|
);
|