var isPrimitive = function isPrimitive(input) {
    var type = typeof input;
    
    return (
      input === null ||