# STATUS: Untested

NamedFunction = require "./internal/NamedFunction"

Null = module.exports = NamedFunction "Null", ctr = -> null

Null.isTypeOf = (value) -> value is null

#
# Internal
#

Constructor = require "./internal/Constructor"

Constructor.set Null, ctr
