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.

17 lines (12 loc) 204 B
class EntityIterator constructor: (@entity) -> next: -> unless @hasNext() null hasNext: -> false rewind: -> @entity current: -> @entity module.exports = EntityIterator