stylus
Version:
Robust, expressive, and feature-rich CSS superset
56 lines (44 loc) • 802 B
JavaScript
/*!
* Stylus - Media
* Copyright(c) 2010 LearnBoost <dev@learnboost.com>
* MIT Licensed
*/
/**
* Module dependencies.
*/
var Node = require('./node')
, nodes = require('./');
/**
* Initialize a new `Media` with the given `val`
*
* @param {String} val
* @api public
*/
var Media = module.exports = function Media(val){
Node.call(this);
this.val = val;
};
/**
* Inherit from `Node.prototype`.
*/
Media.prototype.__proto__ = Node.prototype;
/**
* Clone this node.
*
* @return {Media}
* @api public
*/
Media.prototype.clone = function(){
var clone = new Media(this.val);
clone.block = this.block.clone();
return clone;
};
/**
* Return @media "val".
*
* @return {String}
* @api public
*/
Media.prototype.toString = function(){
return '@media ' + this.val;
};