MCPcopy Index your code
hub / github.com/mailru/FileAPI / runLoggingCallbacks

Function runLoggingCallbacks

tests/qunit/qunit.js:1554–1564  ·  view source on GitHub ↗
( key, scope, args )

Source from the content-addressed store, hash-verified

1552
1553// Supports deprecated method of completely overwriting logging callbacks
1554function runLoggingCallbacks( key, scope, args ) {
1555 var i, callbacks;
1556 if ( QUnit.hasOwnProperty( key ) ) {
1557 QUnit[ key ].call(scope, args );
1558 } else {
1559 callbacks = config[ key ];
1560 for ( i = 0; i < callbacks.length; i++ ) {
1561 callbacks[ i ].call( scope, args );
1562 }
1563 }
1564}
1565
1566// Test for equality any JavaScript type.
1567// Author: Philippe Rathé <prathe@gmail.com>

Callers 2

qunit.jsFile · 0.85
doneFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected