art-standard-lib
Version:
The Standard Library for JavaScript that aught to be.
23 lines (19 loc) • 646 B
text/coffeescript
MinimalBaseObject = require "../../MinimalBaseObject"
module.exports = class Object extends MinimalBaseObject
constructor: (@properties, @instanceOf, @originalObject) ->
super
@length = if @properties then self.Object.keys(@properties).length else 0
@getter
arrayOfStrings: -> "#{k}: #{v}" for k, v of @properties
children: ->
ret = {}
ret[k] = v for k, v of @properties
ret
delimitedString: (delimiter = ", ") -> @arrayOfStrings.join(", ")
toString: ->
if @inspected
@inspected
else if @instanceOf
"{#{@instanceOf} #{@delimitedString()}}"
else
"{#{@delimitedString()}}"