File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright (c) Rich Hickey. All rights reserved.
3+ * The use and distribution terms for this software are covered by the
4+ * Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
5+ * which can be found in the file epl-v10.html at the root of this distribution.
6+ * By using this software in any fashion, you are agreeing to be bound by
7+ * the terms of this license.
8+ * You must not remove this notice, or any other, from this software.
9+ */
10+
111Math . imul = function ( a , b ) { } ;
212
313Object . prototype . done ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright (c) Rich Hickey. All rights reserved.
3+ * The use and distribution terms for this software are covered by the
4+ * Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
5+ * which can be found in the file epl-v10.html at the root of this distribution.
6+ * By using this software in any fashion, you are agreeing to be bound by
7+ * the terms of this license.
8+ * You must not remove this notice, or any other, from this software.
9+ */
10+
11+ // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/imul
12+
113if ( typeof Math . imul == "undefined" || ( Math . imul ( 0xffffffff , 5 ) == 0 ) ) {
214 Math . imul = function ( a , b ) {
315 var ah = ( a >>> 16 ) & 0xffff ;
You can’t perform that action at this time.
0 commit comments