MCPcopy Index your code
hub / github.com/purifycss/purifycss / emitThree

Function emitThree

lib/purifycss.js:105–114  ·  view source on GitHub ↗
(handler, isFn, self, arg1, arg2, arg3)

Source from the content-addressed store, hash-verified

103 }
104}
105function emitThree(handler, isFn, self, arg1, arg2, arg3) {
106 if (isFn)
107 handler.call(self, arg1, arg2, arg3);
108 else {
109 var len = handler.length;
110 var listeners = arrayClone(handler, len);
111 for (var i = 0; i < len; ++i)
112 listeners[i].call(self, arg1, arg2, arg3);
113 }
114}
115
116function emitMany(handler, isFn, self, args) {
117 if (isFn)

Callers 1

purifycss.jsFile · 0.70

Calls 1

arrayCloneFunction · 0.70

Tested by

no test coverage detected