File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -297,7 +297,7 @@ function ColumnSet(columns, options) {
297
297
* @returns {string }
298
298
* Comma-separated list of variable-to-column assignments.
299
299
*/
300
- this . assign = function ( source ) {
300
+ this . assign = source => {
301
301
if ( updates ) {
302
302
return updates ;
303
303
}
@@ -379,7 +379,7 @@ function ColumnSet(columns, options) {
379
379
* // ]
380
380
* // }
381
381
*/
382
- this . extend = function ( columns ) {
382
+ this . extend = columns => {
383
383
var cs = columns ;
384
384
if ( ! ( cs instanceof ColumnSet ) ) {
385
385
cs = new ColumnSet ( columns ) ;
@@ -448,7 +448,7 @@ function ColumnSet(columns, options) {
448
448
* // }
449
449
*
450
450
*/
451
- this . merge = function ( columns ) {
451
+ this . merge = columns => {
452
452
var cs = columns ;
453
453
if ( ! ( cs instanceof ColumnSet ) ) {
454
454
cs = new ColumnSet ( columns ) ;
@@ -491,7 +491,7 @@ function ColumnSet(columns, options) {
491
491
*
492
492
* When the object does not need to be prepared, the original object is returned.
493
493
*/
494
- this . prepare = function ( source ) {
494
+ this . prepare = source => {
495
495
if ( isSimple ) {
496
496
return source ; // a simple ColumnSet requires no object preparation;
497
497
}
You can’t perform that action at this time.
0 commit comments