UNPKG

stylint

Version:
20 lines (16 loc) 377 B
'use strict'; var borderRe = /(border):*(?!-)/; // checks for border none module.exports = function checkBorderNone( line ) { if ( typeof line !== 'string' ) { return; } // return true if border none found if ( borderRe.test( line ) ) { if ( line.indexOf('none') !== -1 ) { return true; } // if border 0 on line, then we good else { return false; } } };