UNPKG

stylint

Version:
13 lines (11 loc) 221 B
'use strict'; // check for semicolons module.exports = function checkForSemicolons( line ) { if ( typeof line !== 'string' ) { return; } if ( line.indexOf(';') !== -1 ) { return true; } else { return false; } }