DefinitelyTyped/ejs/ejs-tests.ts
Ryan Cavanaugh 81862d240d More fixes
2016-05-04 22:50:05 -07:00

4 lines
144 B
TypeScript

import ejs = require("ejs");
var people = ['geddy', 'neil', 'alex'];
var html = ejs.render('<%= people.join(", "); %>', { people: people });