mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-20 23:05:09 +00:00
18 lines
No EOL
358 B
JavaScript
18 lines
No EOL
358 B
JavaScript
"use strict";
|
|
|
|
module.exports = function (_ref) {
|
|
var t = _ref.types;
|
|
|
|
var VOID_0 = t.unaryExpression("void", t.numericLiteral(0), true);
|
|
|
|
return {
|
|
name: "transform-undefined-to-void",
|
|
visitor: {
|
|
ReferencedIdentifier(path) {
|
|
if (path.node.name === "undefined") {
|
|
path.replaceWith(VOID_0);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}; |