All files / src/preds isStr.js

0% Statements 0/2
0% Branches 0/3
0% Functions 0/1
0% Lines 0/2
1 2 3 4 5 6           
function isString( x ) {
  return x !== null && x !== undefined && x.constructor === String
}
 
module.exports = isString;