Skip to content

Instantly share code, notes, and snippets.

View kubosho's full-sized avatar
🎯
Focusing

KUBOTA Shota kubosho

🎯
Focusing
View GitHub Profile
javascript:(
() => {
'use strict';
const getLastUpdate = (domObj) => {
return domObj.querySelector(".contributors-sub time").dateTime;
};
const isOlderJapaneseArticle = (jaLastMod, enLastMod) => {
return Date.parse(jaLastMod) - Date.parse(enLastMod) < 0;