mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 02:42:48 +00:00
Added all files
This commit is contained in:
24
node_modules/jade/lib/nodes/block-comment.js
generated
vendored
Normal file
24
node_modules/jade/lib/nodes/block-comment.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
'use strict';
|
||||
|
||||
var Node = require('./node');
|
||||
|
||||
/**
|
||||
* Initialize a `BlockComment` with the given `block`.
|
||||
*
|
||||
* @param {String} val
|
||||
* @param {Block} block
|
||||
* @param {Boolean} buffer
|
||||
* @api public
|
||||
*/
|
||||
|
||||
var BlockComment = module.exports = function BlockComment(val, block, buffer) {
|
||||
this.block = block;
|
||||
this.val = val;
|
||||
this.buffer = buffer;
|
||||
};
|
||||
|
||||
// Inherit from `Node`.
|
||||
BlockComment.prototype = Object.create(Node.prototype);
|
||||
BlockComment.prototype.constructor = BlockComment;
|
||||
|
||||
BlockComment.prototype.type = 'BlockComment';
|
||||
Reference in New Issue
Block a user