6 lines
122 B
JavaScript
6 lines
122 B
JavaScript
|
import exponent from "./exponent.js";
|
||
|
|
||
|
export default function(step) {
|
||
|
return Math.max(0, -exponent(Math.abs(step)));
|
||
|
}
|