'use strict';
// if we disallowed css literals, check for them and return true if foundmodule.exports = functioncheckCssLiteral( line ) {
if ( typeof line !== 'string' ) { return; }
if ( line.indexOf('@css') !== -1 ) {
returntrue;
}
else {
returnfalse;
}
};