🫠
Melting
Pinned Loading
-
Synchronous NodeJS script to parse C...
Synchronous NodeJS script to parse CSS files and read out used font-family, font-weight and font-styles to generate a <link> tag for Google custom fonts. 1const fs = require('fs');
23// TODO LIST OF CUSTOM FONTS - ADD NEW FONTS TO IT IF NEEDED
4const CUSTOM_FONTS_SPECS = [
5{
-
NodeJS script to lookup carrier info...
NodeJS script to lookup carrier information in parallel using the paid service twilio. (https://www.twilio.com/docs/api/lookups) The data is read from a CSV-file, parsed, processed and written to the output csv-file. 1// Install dependencies
2// npm i -s node-fetch csv-writer csvtojson
34const fetch = require('node-fetch');
5const csvToJson = require('csvtojson');
-
ES5 Element ready observer using a M...
ES5 Element ready observer using a MutationObserver to detect, if an HTML element generated on runtime is ready to be accessed. 1function isElement(addedNode, selector, callback) {
2if (typeof addedNode.querySelector === 'function' && addedNode.querySelector(selector)) {
3callback();
4}
5}
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.