mirror of
https://github.com/phpv8/v8js.git
synced 2025-01-03 09:21:51 +00:00
#210 Windows: Autodetect V8 API & V8 Engine Compiled Version - v8js_zeroPad
This commit is contained in:
parent
ebdc5e4942
commit
44abbc5668
@ -1,6 +1,11 @@
|
|||||||
|
|
||||||
ARG_WITH("v8js", "for V8 Javascript Engine", "no");
|
ARG_WITH("v8js", "for V8 Javascript Engine", "no");
|
||||||
|
|
||||||
|
function v8js_zeroPad(num, places) {
|
||||||
|
var zero = places - num.toString().length + 1;
|
||||||
|
return Array(+(zero > 0 && zero)).join("0") + num;
|
||||||
|
}
|
||||||
|
|
||||||
if (PHP_V8JS != "no") {
|
if (PHP_V8JS != "no") {
|
||||||
if (CHECK_LIB("v8_libplatform.lib", "v8js") &&
|
if (CHECK_LIB("v8_libplatform.lib", "v8js") &&
|
||||||
CHECK_LIB("v8_libbase.lib", "v8js") &&
|
CHECK_LIB("v8_libbase.lib", "v8js") &&
|
||||||
|
Loading…
Reference in New Issue
Block a user