- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
38 lines
596 B
JavaScript
38 lines
596 B
JavaScript
var exponent = 3;
|
|
|
|
export var polyIn = (function custom(e) {
|
|
e = +e;
|
|
|
|
function polyIn(t) {
|
|
return Math.pow(t, e);
|
|
}
|
|
|
|
polyIn.exponent = custom;
|
|
|
|
return polyIn;
|
|
})(exponent);
|
|
|
|
export var polyOut = (function custom(e) {
|
|
e = +e;
|
|
|
|
function polyOut(t) {
|
|
return 1 - Math.pow(1 - t, e);
|
|
}
|
|
|
|
polyOut.exponent = custom;
|
|
|
|
return polyOut;
|
|
})(exponent);
|
|
|
|
export var polyInOut = (function custom(e) {
|
|
e = +e;
|
|
|
|
function polyInOut(t) {
|
|
return ((t *= 2) <= 1 ? Math.pow(t, e) : 2 - Math.pow(2 - t, e)) / 2;
|
|
}
|
|
|
|
polyInOut.exponent = custom;
|
|
|
|
return polyInOut;
|
|
})(exponent);
|