MCPcopy Index your code
hub / github.com/ember-cli/ember-cli / getJson

Function getJson

lib/models/command.js:652–663  ·  view source on GitHub ↗

* @method getJson * @param {Object} options * @return {Object}

(options)

Source from the content-addressed store, hash-verified

650 * @return {Object}
651 */
652 getJson(options) {
653 let json = {};
654
655 this.registerOptions(options);
656 this._printableProperties.forEach((key) => (json[key] = this[key]));
657
658 if (this.addAdditionalJsonForHelp) {
659 this.addAdditionalJsonForHelp(json, options);
660 }
661
662 return json;
663 },
664});
665
666/*

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…