UNPKG

stylint

Version:
13 lines (11 loc) 322 B
'use strict'; // check for colons module.exports = function checkForColon( line, areWeInAHash ) { if ( typeof areWeInAHash === 'undefined' || typeof line === 'undefined' ) { return; } if ( areWeInAHash === false && line.indexOf(': ') !== -1 ) { return true; } else { return false; } }