pocomath/src/generic/Types/generic.mjs

6 lines
200 B
JavaScript

import PocomathInstance from '../../core/PocomathInstance.mjs'
const Undefined = new PocomathInstance('Undefined')
Undefined.installType('undefined', {test: u => u === undefined})
export {Undefined}