0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-19 16:35:19 +00:00

#210 Windows: Autodetect V8 API & V8 Engine Compiled Version - v8js_zeroPad

This commit is contained in:
Jan Ehrhardt 2016-03-08 22:46:32 +01:00
parent 468d9e1090
commit 8575dc0e55

View File

@ -1,6 +1,11 @@
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 (CHECK_LIB("v8.lib", "v8js") &&
CHECK_HEADER_ADD_INCLUDE("v8.h", "CFLAGS_V8JS")) {