Sha256: 765660b79dbf59133260b2205dd32153a406b6c71727fa6186c268eda374b6e9
Contents?: true
Size: 1.16 KB
Versions: 31
Compression:
Stored size: 1.16 KB
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); var metadata = { group: "builtin-trailing" }; exports.metadata = metadata; /** * Turn reserved word properties into literals. * * **In** * * ```javascript * var foo = { * catch: function () {} * }; * ``` * * **Out** * * ```javascript * var foo = { * "catch": function () {} * }; * ``` */ var visitor = { /** * Look for non-computed keys with names that are not valid identifiers. * Turn them into literals. */ Property: { exit: function exit(node) { var key = node.key; if (!node.computed && t.isIdentifier(key) && !t.isValidIdentifier(key.name)) { // default: "bar" -> "default": "bar" node.key = t.literal(key.name); } } } }; exports.visitor = visitor;
Version data entries
31 entries across 31 versions & 1 rubygems