Following @ilicmarko's comment, here's my spacing.scss file…
(see spacing.scss)
…which generates the following spacing utility classes…
(see spacing.css)
| function getBTCPrice() { | |
| var response = UrlFetchApp.fetch("https://www.bitstamp.net/api/ticker"); | |
| var last = JSON.parse(response.getContentText()).last; | |
| Logger.log(last); | |
| return last; | |
| } |
Following @ilicmarko's comment, here's my spacing.scss file…
(see spacing.scss)
…which generates the following spacing utility classes…
(see spacing.css)