MCPcopy
hub / github.com/ajaxorg/ace / getValue

Function getValue

lib/ace/mode/yaml/yaml-lint.js:4091–4093  ·  view source on GitHub ↗

* Gets the value at `key` of `object`. * * @private * @param {Object} [object] The object to query. * @param {string} key The key of the property to get. * @returns {*} Returns the property value.

(object, key)

Source from the content-addressed store, hash-verified

4089 * @returns {*} Returns the property value.
4090 */
4091function getValue(object, key) {
4092 return object == null ? undefined : object[key];
4093}
4094
4095/**
4096 * Creates a unary function that invokes `func` with its argument transformed.

Callers 2

getNativeFunction · 0.70
setupContainerFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…