11 lines
187 B
JavaScript
Raw Normal View History

Rename doc-shredder/test to doc-shredder/_test to avoid harp compile issues # Conflicts: # public/doc-shredder/_test/.gitignore # public/doc-shredder/_test/test_source/app.js # public/doc-shredder/_test/test_source/app.ts # public/doc-shredder/_test/test_source/app2.ts # public/doc-shredder/_test/test_source/do-not-read.js # public/doc-shredder/_test/test_source/first.html # public/doc-shredder/_test/test_source/gettingstarted/js/index.html # public/doc-shredder/_test/test_source/gettingstarted/js/main.js # public/doc-shredder/_test/test_source/gettingstarted/protractor-spec.js # public/doc-shredder/_test/test_source/gettingstarted/ts/index.html # public/doc-shredder/_test/test_source/gettingstarted/ts/main.js # public/doc-shredder/_test/test_source/gettingstarted/ts/main.js.map # public/doc-shredder/_test/test_source/gettingstarted/ts/main.ts # public/doc-shredder/_test/test_source/sub1/foo/script.js # public/doc-shredder/_test/test_source/sub1/script.2.js # public/doc-shredder/_test/test_source/sub1/script.js # public/doc-shredder/_test/test_source/sub1/script.ts # public/doc-shredder/_test/test_source/sub1/second.html # public/doc-shredder/test/test_source/app.ts # public/doc-shredder/test/test_source/app2.ts # public/doc-shredder/test/test_source/do-not-read.js # public/doc-shredder/test/test_source/gettingstarted/js/index.html # public/doc-shredder/test/test_source/gettingstarted/js/main.js # public/doc-shredder/test/test_source/gettingstarted/protractor-spec.js # public/doc-shredder/test/test_source/gettingstarted/ts/index.html # public/doc-shredder/test/test_source/gettingstarted/ts/main.js # public/doc-shredder/test/test_source/gettingstarted/ts/main.js.map # public/doc-shredder/test/test_source/gettingstarted/ts/main.ts # public/doc-shredder/test/test_source/sub1/foo/script.js # tools/doc-shredder/_test/test_source/no-multiregion/app.ts # tools/doc-shredder/_test/test_source/no-multiregion/app2.ts # tools/doc-shredder/_test/test_source/no-multiregion/do-not-read.js # tools/doc-shredder/_test/test_source/no-multiregion/gettingstarted/js/index.html # tools/doc-shredder/_test/test_source/no-multiregion/gettingstarted/js/main.js # tools/doc-shredder/_test/test_source/no-multiregion/gettingstarted/protractor-spec.js # tools/doc-shredder/_test/test_source/no-multiregion/gettingstarted/ts/index.html # tools/doc-shredder/_test/test_source/no-multiregion/gettingstarted/ts/main.js # tools/doc-shredder/_test/test_source/no-multiregion/gettingstarted/ts/main.js.map # tools/doc-shredder/_test/test_source/no-multiregion/gettingstarted/ts/main.ts # tools/doc-shredder/_test/test_source/no-multiregion/nestedFolder/script.js
2021-04-05 09:57:24 -04:00
// #docregion
/**
* @description This function returns a string.
*
* @returns {string} This string has the value 'Hello World'.
*/
function helloWorld() {
return 'Hello World';
}