| 1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 4 3 1 2 | 'use strict';
// if we disallowed css literals, check for them and return true if found
module.exports = function checkCssLiteral( line ) {
if ( typeof line !== 'string' ) { return; }
if ( line.indexOf('@css') !== -1 ) {
return true;
}
else {
return false;
}
} |