diff options
author | machty <machty@gmail.com> | 2015-12-10 12:25:20 -0500 |
---|---|---|
committer | machty <machty@gmail.com> | 2015-12-10 14:22:45 -0500 |
commit | 3f77b82ed00dc1d71976de76bd4f8dfb6e885f2a (patch) | |
tree | 5b8e28cafb942cd7ed448e07e5e6076d95e73968 /lib/handlebars/utils.js | |
parent | 205c61cfb1acdb599bbdfcf2d356641254e09e5c (diff) | |
download | handlebars.js-3f77b82ed00dc1d71976de76bd4f8dfb6e885f2a.zip handlebars.js-3f77b82ed00dc1d71976de76bd4f8dfb6e885f2a.tar.gz handlebars.js-3f77b82ed00dc1d71976de76bd4f8dfb6e885f2a.tar.bz2 |
Remove stringParams and trackIds mode
Closes #1145
Diffstat (limited to 'lib/handlebars/utils.js')
-rw-r--r-- | lib/handlebars/utils.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/handlebars/utils.js b/lib/handlebars/utils.js index 2584601..9d08394 100644 --- a/lib/handlebars/utils.js +++ b/lib/handlebars/utils.js @@ -98,11 +98,3 @@ export function createFrame(object) { return frame; } -export function blockParams(params, ids) { - params.path = ids; - return params; -} - -export function appendContextPath(contextPath, id) { - return (contextPath ? contextPath + '.' : '') + id; -} |