@cotestdev/mcp_playwright 0.0.54 → 0.0.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var babelBundle_exports = {};
20
+ __export(babelBundle_exports, {
21
+ babelParse: () => babelParse,
22
+ babelTransform: () => babelTransform,
23
+ codeFrameColumns: () => codeFrameColumns,
24
+ declare: () => declare,
25
+ genMapping: () => genMapping,
26
+ traverse: () => traverse,
27
+ types: () => types
28
+ });
29
+ module.exports = __toCommonJS(babelBundle_exports);
30
+ const codeFrameColumns = require("./babelBundleImpl").codeFrameColumns;
31
+ const declare = require("./babelBundleImpl").declare;
32
+ const types = require("./babelBundleImpl").types;
33
+ const traverse = require("./babelBundleImpl").traverse;
34
+ const babelTransform = require("./babelBundleImpl").babelTransform;
35
+ const babelParse = require("./babelBundleImpl").babelParse;
36
+ const genMapping = require("./babelBundleImpl").genMapping;
37
+ // Annotate the CommonJS export names for ESM import in node:
38
+ 0 && (module.exports = {
39
+ babelParse,
40
+ babelTransform,
41
+ codeFrameColumns,
42
+ declare,
43
+ genMapping,
44
+ traverse,
45
+ types
46
+ });