Skip to content

Instantly share code, notes, and snippets.

View john-doherty's full-sized avatar
🎯
Focusing

John Doherty john-doherty

🎯
Focusing
View GitHub Profile
@john-doherty
john-doherty / remove-invalid-xml-characters.js
Last active March 30, 2024 10:19
JavaScript function that removes invalid XML characters from a string according to the spec
/**
* Removes invalid XML characters from a string
* @param {string} str - a string containing potentially invalid XML characters (non-UTF8 characters, STX, EOX etc)
* @param {boolean} removeDiscouragedChars - should it remove discouraged but valid XML characters
* @return {string} a sanitized string stripped of invalid XML characters
*/
function removeXMLInvalidChars(str, removeDiscouragedChars) {
// remove everything forbidden by XML 1.0 specifications, plus the unicode replacement character U+FFFD
var regex = /((?:[\0-\x08\x0B\f\x0E-\x1F\uFFFD\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]))/g;
@john-doherty
john-doherty / javascript-string-to-json-safe-key.js
Created June 16, 2019 18:12
Converts a string to JSON safe key (property name) by removing unsafe characters and converting to camel case
/**
* Converts a string to JSON safe key (property name) by removing unsafe
* characters and converting to camel case
* @param {string} src - string to convert
* @Example
* stringToJsonSafeKey('r@ndAm wo5d') // rndamWo5d
* @returns {string} id/key safe string
*/
function stringToJsonSafeKey(src) {
@john-doherty
john-doherty / cordova-file-storage.js
Last active August 2, 2023 10:32
An easy way to read/write files in Cordova
var fileStorage = {
/**
* Saves a file on the device
* @param {string} name - filename (can include sub folders)
* @param {string} data - file contents
* @param {boolean} useSandbox - uses protected sandbox if true, otherwise external (default false)
* @returns {Promise} executes .then with saved file path as first param
*/
write: function (name, data, useSandbox) {
@john-doherty
john-doherty / get-nearest-html-attribute.js
Created August 29, 2020 14:20
Gets attribute off HTML element or nearest parent
/**
* Gets attribute off HTML element or nearest parent
* @param {object} el - HTML element to retrieve attribute from
* @param {string} attributeName - name of the attribute
* @param {any} defaultValue - default value to return if no match found
* @returns {any} attribute value or defaultValue
*/
function getNearestAttribute(el, attributeName, defaultValue) {
// walk up the dom tree looking for data-action and data-trigger
@john-doherty
john-doherty / puppeteer-waitforevent.js
Last active March 28, 2023 07:09
puppeteer wait for an event to fire
/**
* Wait for the browser to fire an event (including custom events)
* @param {string} eventName - Event name
* @param {integer} seconds - number of seconds to wait.
* @returns {Promise} resolves when event fires or timeout is reached
*/
async function waitForEvent(eventName, seconds) {
seconds = seconds || 30;
@john-doherty
john-doherty / javascript-promises-in-sequence.js
Last active March 11, 2023 19:20
Similar to Promise.all but executes promises in sequence
/**
* Executes an array of functions that return a promise in sequence
* @example
* promisesInSequence([
* function() { return Promise.resolve(1); }
* function() { return Promise.resolve(2); },
* function() { return Promise.resolve(3); }
* ])
* .then(function(result) {
* console.log(result.join(',')); // output = 1,2,3
@john-doherty
john-doherty / javascript-wait-for-events.js
Last active May 31, 2023 11:19
Wait for multiple JavaScript events to fire
/**
* Waits for multiple DOM events to fire
* @example
* waitForEvents(window, [
* 'DOMContentLoaded',
* 'online'
* ])
* .then(function(result) {
* // do stuff
@john-doherty
john-doherty / javascript-is-empty.js
Last active February 19, 2021 10:51
Check if a variable is really empty in JavaScript
/**
* Checks if a JavaScript value is empty
* @example
* isEmpty(null); // true
* isEmpty(undefined); // true
* isEmpty(''); // true
* isEmpty([]); // true
* isEmpty({}); // true
* @param {any} value - item to test
* @returns {boolean} true if empty, otherwise false
@john-doherty
john-doherty / javascript-isurl.js
Created March 23, 2021 16:17
Check if a string is a URL in JavaScript
/**
* Checks if a string is a URL
* @example isUrl('https://orcascan.com') // true;
* @param {string} str - value to test
* @returns {boolean} true if URL otherwise false
*/
function isUrl(str) {
return /(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/.test(str);
}
@john-doherty
john-doherty / how-to-download-a-file-with-node.js
Last active October 2, 2021 20:19
How to download a file with Node.js
var fs = require('fs-extra');
var fetch = require('node-fetch');
/**
* Download a file to disk
* @example downloadFile('https://orcascan.com', './barcode-tracking.html')
* @param {string} fileUrl - url of file to download
* @param {string} destPath - destination path
* @returns {Promise} resolves once complete, otherwise rejects
*/