aboutsummaryrefslogtreecommitdiff
path: root/template/typescript/snip-forin.ts
blob: 44ec67401bea88ba0da114b8a8db64fac4af4472 (plain)
1
2
3
4
5
6
for (const {{_input_:key}} in {{_input_:object}}) {
	if ({{_input_:object}}.hasOwnProperty({{_input_:key}})) {
		const {{_input_:element}} = {{_input_:object}}[{{_input_:key}}];
		{{_cursor_}}
	}
}