Get tmpl type.
npm install @jswork/tmpl-type
import tmplType from '@jswork/tmpl-type';
tmplType('abc is {0}, name is {1}'); // SIMPLE
tmplType('abc is {age}, name is {person.name}'); // SIMPLE
tmplType('abc is ${name}'); // LITERAL
tmplType('abc is ${{env.home}}'); // DOUBLE
tmplType('abc is aric.'); // undefined
Code released under the MIT license.