Skip to content
This repository has been archived by the owner on Apr 24, 2022. It is now read-only.

gas-commons/Mustache

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 

Repository files navigation

Mustache

Mustache.js for Googe Apps Script

Usage

Add library

project key: 13re0EpD6XiVa5zHXndGiYtcH-QMnbeE5MJH190pJ8xCYhmuW5sX2ZO5R

Use in your script

Example:

var template = '{{title}} spends {{calc}}'
var data = {
  title: 'Joe',
  calc: function () {
    return 2 + 4
  }
}

var output = Mustache.render(template, data) // Joe spends 6

Reference