twing
Version:
First-class Twig engine for Node.js
12 lines (11 loc) • 392 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isNullSynchronously = exports.isNull = void 0;
const isNull = (_executionContext, value) => {
return Promise.resolve(value === null);
};
exports.isNull = isNull;
const isNullSynchronously = (_executionContext, value) => {
return value === null;
};
exports.isNullSynchronously = isNullSynchronously;