We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c470b2 commit ec5ed67Copy full SHA for ec5ed67
1 file changed
src/main/cljs/cljs/imul.js
@@ -1,15 +1,3 @@
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
13
if(typeof Math.imul == "undefined" || (Math.imul(0xffffffff,5) == 0)) {
14
Math.imul = function (a, b) {
15
var ah = (a >>> 16) & 0xffff;
0 commit comments