Skip to content

Commit

Permalink
make file more horrible!
Browse files Browse the repository at this point in the history
  • Loading branch information
dangowans committed Apr 8, 2024
1 parent 6a5bf6b commit 5e3f811
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
15 changes: 13 additions & 2 deletions test/test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
/* eslint-disable no-multi-spaces */
/*
This
file
is
intentionally
horrible.
*/
import './missing';
var emailExpression = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
export async function test_fn(varName) {
Expand All @@ -7,7 +14,11 @@ export async function test_fn(varName) {
var VAR = /[0-9\d]/g;
return varName + 'test' + ' ' + 2;
}
let tst = `test`;
export default function () {
/** test */
return !false;
}
let tmp = `test`;
async function promiseTst(param1, param2, param3, param4, param5, param6) {
return new Promise(function (resolve, reject) {
for (let i = 1; i <= 1; i++) {
Expand Down
3 changes: 2 additions & 1 deletion test/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ export default function () {

let tmp = `test`

async function promiseTst (param1, param2, param3, param4, param5, param6) {
async function promiseTst (param1, param2?
, param3, param4, param5, param6) {
return new Promise(function (resolve, reject) {
for (let i = 1; i <= 1; i ++) {
//
Expand Down

0 comments on commit 5e3f811

Please sign in to comment.