Files

6 lines
149 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.not = void 0;
const not = (value) => !value;
exports.not = not;