Skip to content

Commit aad0431

Browse files
committed
fix: Add missing concat helper.
1 parent 5c917e5 commit aad0431

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/// @ts-ignore
2+
import { helper } from "@ember/component/helper";
3+
4+
// tslint:disable-next-line:prefer-unknown-to-any
5+
function _concat(args: any[]) {
6+
return args.join("");
7+
}
8+
9+
const concat = helper(_concat);
10+
11+
// tslint:disable-next-line:no-default-export
12+
export default concat;

0 commit comments

Comments
 (0)