mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-20 23:05:09 +00:00
7 lines
No EOL
199 B
JavaScript
7 lines
No EOL
199 B
JavaScript
"use strict";
|
|
|
|
module.exports = function (t) {
|
|
return function isVoid0(expr) {
|
|
return t.isUnaryExpression(expr, { operator: "void" }) && t.isNumericLiteral(expr.argument, { value: 0 });
|
|
};
|
|
}; |