Skip to content

Instantly share code, notes, and snippets.

View martinschneider's full-sized avatar
🇹🇼

Martin Schneider martinschneider

🇹🇼
View GitHub Profile
@jlhernando
jlhernando / decode URL Apps Script
Created April 6, 2022 10:21
Decode URLs in Google Sheets creating a custom fucntion in Apps Script
/* Both these funcitons will work fine */
// As a function declaration
function DECODE(url) {
return decodeURI(url)
}
// Or as an arrow function
const DECODEURL = (url) => decodeURI(url)