UNPKG
dmpixi
Version:
latest (1.3.4)
1.3.4
1.3.2
1.3.1
1.3.0
1.2.8
1.2.7
1.2.6
1.2.5
1.2.4
1.2.2
1.2.1
1.2.0
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
多卖pixi 淘宝小程序 支持骨骼动画,整屏滚动等
github.com/SongBana/tbpixi
SongBana/tbpixi
dmpixi
/
lib
/
scroller
/
numericEqual.js
8 lines
(6 loc)
•
174 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
=
function
(
lhs, rhs, epsilon
) {
if
(epsilon ===
undefined
) { epsilon =
Math
.
pow
(
10
, -
14
); }
return
Math
.
abs
(lhs/rhs) -
1.0
< epsilon; };