Every line of 'jquery join' 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.
54 function setJoin(join) { 55 if (join === 'miter' || join === 'round' || join === 'bevel') { 56 this._join = '' + join; 57 } 58 }
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code
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 }