UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

10 lines (9 loc) 379 B
function getlastmod() { // From: http://phpjs.org/functions // + original by: Brett Zamir (http://brett-zamir.me) // % note 1: Will not work on browsers which don't support document.lastModified // * test: skip // * example 1: getlastmod(); // * returns 1: 1237610043 return new Date(this.window.document.lastModified).getTime() / 1000; }