IICE => IIFE

This commit is contained in:
Pierre-Yves Gerardy 2017-03-04 23:24:21 +01:00
parent 485febd0cc
commit c3d015be28
3 changed files with 34 additions and 35 deletions

View file

@ -1,6 +1,6 @@
"use strict"
new function() {
;(function() {
var guid = 0, HALT = {}
function createStream() {
@ -118,4 +118,4 @@ if (typeof module !== "undefined") module["exports"] = createStream
else if (typeof window.m === "function" && !("stream" in window.m)) window.m.stream = createStream
else window.m = {stream : createStream}
}
}());