MCPcopy
hub / github.com/moxiecode/plupload / _p

Function _p

js/moxie.js:5684–5697  ·  view source on GitHub ↗
(prop, value)

Source from the content-addressed store, hash-verified

5682 */
5683
5684 function _p(prop, value) {
5685 if (!props.hasOwnProperty(prop)) {
5686 return;
5687 }
5688 if (arguments.length === 1) { // get
5689 return Env.can('define_property') ? props[prop] : self[prop];
5690 } else { // set
5691 if (Env.can('define_property')) {
5692 props[prop] = value;
5693 } else {
5694 self[prop] = value;
5695 }
5696 }
5697 }
5698
5699 /*
5700 function _toASCII(str, AllowUnassigned, UseSTD3ASCIIRules) {

Callers 3

XMLHttpRequestFunction · 0.85
execFunction · 0.85
_resetFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected