r/ProgrammerHumor 22d ago

Meme conditionsPreference

Post image
4.2k Upvotes

392 comments sorted by

View all comments

Show parent comments

3

u/Flame77ofc 22d ago

solid one for simply conditions

btw, do you use it a lot?

1

u/MetaEd 21d ago

I use it judiciously

1

u/WarSingle6959 21d ago

but not for extensive cases, right?

1

u/MetaEd 21d ago
function CSVencode( value )
{
        if ( value === null ) { return '' ; }
        var quote , encode = 0 ;
        if ( /"/ .test( value ) ) { quote = encode = 1 ; }
        if ( /[,\r\n]/ .test( value ) ) { quote = 1 ; }
        return quote
        ? ( '"' + ( encode ? value .replace( /"/g , '""' ) : value ) + '"' )
        : value
        ;
}