Sha256: 6501593bb3568b2763d49b841a58b3c40f0e3dc68b2bd3a52d5f4e9e84ccbddd
Contents?: true
Size: 762 Bytes
Versions: 31
Compression:
Stored size: 762 Bytes
Contents
/* */ "format cjs"; "use strict"; exports.__esModule = true; // istanbul ignore next function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj["default"] = obj; return newObj; } } var _types = require("../types"); var t = _interopRequireWildcard(_types); /** * Normalize an AST. * * - Wrap `Program` node with a `File` node. */ exports["default"] = function (ast, comments, tokens) { if (ast && ast.type === "Program") { return t.file(ast, comments || [], tokens || []); } else { throw new Error("Not a valid ast?"); } }; module.exports = exports["default"];
Version data entries
31 entries across 31 versions & 1 rubygems