/
var
/
www
/
cobraambalaj
/
node_modules
/
@babel
/
traverse
/
scripts
/
generators
/
/var/www/cobraambalaj/node_modules/@babel/traverse/scripts/generators
mkdir
upload
Name
Size
Mode
Actions
asserts.js
485
0644
edit
dl
rm
validators.js
913
0644
edit
dl
rm
virtual-types.js
517
0644
edit
dl
rm
Edit:
/var/www/cobraambalaj/node_modules/@babel/traverse/scripts/generators/validators.js
(913B)
import t from "@babel/types"; import virtualTypes from "../../lib/path/lib/virtual-types.js"; import definitions from "@babel/types/lib/definitions/index.js"; export default function generateValidators() { let output = `/* * This file is auto-generated! Do not modify it directly. * To re-generate run 'make build' */ import * as t from "@babel/types"; import NodePath from "../index"; export interface NodePathValidators { `; for (const type of [...t.TYPES].sort()) { output += `is${type}(opts?: object): this is NodePath<t.${type}>;`; } for (const type of Object.keys(virtualTypes)) { if (type[0] === "_") continue; if (definitions.NODE_FIELDS[type] || definitions.FLIPPED_ALIAS_KEYS[type]) { output += `is${type}(opts?: object): this is NodePath<t.${type}>;`; } else { output += `is${type}(opts?: object): boolean;`; } } output += ` } `; return output; }
Save
cmd:
run