Every line of 'join js' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
321 join(join){ 322 if (!join) { 323 return this; 324 } 325 if (!this._options.join) { 326 this._options.join = []; 327 } 328 if (think.isArray(join)) { 329 this._options.join = this._options.join.concat(join); 330 }else{ 331 this._options.join.push(join); 332 } 333 return this; 334 }