11 lines
181 B
JavaScript
Raw Normal View History

2019-02-01 14:06:44 +01:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = notId;
function notId(v) {
return !v;
}
module.exports = exports["default"];