const css = (templ) => templ.toString(); const fooNoBracesUTF8 = css` before /* */ after `; const fooNoBracesUT16 = css` before 🙃 after `; const fooUTF8 = css` before ${true} after `; const fooUTF16 = css` before 🙃 ${true} after `; const templateLiteralWhichDefinesAFunction = ((...args) => args[args.length - 1]().toString())` before 🙃 ${() => true} after `; export function test() { for (let foo of [fooNoBracesUT16, fooNoBracesUTF8, fooUTF16, fooUTF8]) { console.assert( foo.includes("before"), `Expected ${foo} to include "before"` ); console.assert(foo.includes("after"), `Expected ${foo} to include "after"`); } console.assert( templateLiteralWhichDefinesAFunction.includes("true"), "Expected fooFunction to include 'true'" ); return testDone(import.meta.url); } >Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/net/internal/socket/rawconn.go (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2018-02-03Add support for base URLs with subfoldersGravatar Frédéric Guillot 10-23/+105
2018-02-01Update German translationGravatar stratmaster 2-4/+12
2018-01-31Add missing about menu in settingsGravatar Frédéric Guillot 5-5/+29
2018-01-31Show API URL endpoints in user interfaceGravatar Frédéric Guillot 11-14/+99
2018-01-29Do not update entry date while refreshing a feedGravatar Frédéric Guillot 1-4/+5
2018-01-29Enable debug mode for integration testsGravatar Frédéric Guillot 1-1/+1
2018-01-29Add the possiblity to enable debug mode with an environment variableGravatar Frédéric Guillot 2-1/+6
2018-01-29Keep code base tidyGravatar Frédéric Guillot 5-18/+16
2018-01-29Add flag to enable debug loggingGravatar Rogier Lommers 2-7/+64
2018-01-25Improve unread counter updatesGravatar Mahendra Kalkura 1-6/+35