UNPKG

stylint

Version:
13 lines (11 loc) 300 B
'use strict'; // checks for border none module.exports = function checkBorderNone( line ) { if ( typeof line !== 'string' ) { return; } if ( line.indexOf( 'border none' ) !== -1 ) { return true; } else if ( line.indexOf( 'border 0' ) !== -1 ) { return false; } }