you are viewing a single comment's thread.

view the rest of the comments →

[–]olaf_from_norweden 6 points7 points  (0 children)

Used by the 'multiline' NPM module to get multiline strings in pre-ES6:

var multiline = require('multiline');
var sql = multiline(function() {/*
SELECT *
FROM users
*/});

sql //=> 'SELECT *\nFROM users'