You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
312 B
10 lines
312 B
"use strict"; |
|
|
|
module.exports = function (t, a) { |
|
a(t(1, 2), 1, "Options"); |
|
a(t(1, 2, true), 1, "Options: Async "); |
|
a(t(undefined, 2), 2, "Function"); |
|
a(t(undefined, 2, true), 1, "Function: Async"); |
|
a(t(undefined, undefined, false), 1, "Unknown"); |
|
a(t(undefined, undefined, true), 1, "Unknown: async"); |
|
};
|
|
|