How to use the node-sass.NULL function in node-sass

To help you get started, we’ve selected a few node-sass examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github linkedin / eyeglass / test / test_imports.js View on Github external
var importerMiss = function(uri, prev, cb) {
     importerMissCalled = true;
     cb(sass.NULL);
    };
github Financial-Times / origami-build-tools / lib / tasks / build.js View on Github external
'@warn': function (warning) {
						if (output) {
							output += '\n' + warning.getValue().replace(/\n/g, ' ');
						} else {
							output = warning.getValue().replace(/\n/g, ' ');
						}
						task.output = output;
						return nodeSass.NULL;
					}
				};