UNPKG

json-api-schema

Version:

JSON Api Schema is a JSON dialect that can describe any Web Based API that uses JSON to exchange data.

16 lines (11 loc) 163 B
class NullIterator constructor: () -> next: -> null hasNext: -> false rewind: -> null current: -> null module.exports = NullIterator