mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-14 03:22:48 +00:00
Added all files
This commit is contained in:
18
node_modules/jade/lib/nodes/mixin-block.js
generated
vendored
Normal file
18
node_modules/jade/lib/nodes/mixin-block.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
'use strict';
|
||||
|
||||
var Node = require('./node');
|
||||
|
||||
/**
|
||||
* Initialize a new `Block` with an optional `node`.
|
||||
*
|
||||
* @param {Node} node
|
||||
* @api public
|
||||
*/
|
||||
|
||||
var MixinBlock = module.exports = function MixinBlock(){};
|
||||
|
||||
// Inherit from `Node`.
|
||||
MixinBlock.prototype = Object.create(Node.prototype);
|
||||
MixinBlock.prototype.constructor = MixinBlock;
|
||||
|
||||
MixinBlock.prototype.type = 'MixinBlock';
|
||||
Reference in New Issue
Block a user