Sha256: b46402c24ef933761b36d1f161175ef86509c2ed61b0b52846e6346895b02b2b
Contents?: true
Size: 741 Bytes
Versions: 8
Compression:
Stored size: 741 Bytes
Contents
"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
8 entries across 8 versions & 3 rubygems