You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
317 B
16 lines
317 B
4 weeks ago
|
|
||
|
/**
|
||
|
* Module dependencies.
|
||
|
*/
|
||
|
|
||
|
var pug = require('../')
|
||
|
, path = __dirname + '/mixins.pug'
|
||
|
, str = require('fs').readFileSync(path, 'utf8')
|
||
|
, fn = pug.compile(str, { filename: path, pretty: true });
|
||
|
|
||
|
var user = {
|
||
|
name: 'tj'
|
||
|
, pets: ['tobi', 'loki', 'jane', 'manny']
|
||
|
};
|
||
|
|
||
|
console.log(fn({ user: user }));
|