summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/utils.js
diff options
context:
space:
mode:
authormachty <machty@gmail.com>2015-12-10 12:25:20 -0500
committermachty <machty@gmail.com>2015-12-10 14:22:45 -0500
commit3f77b82ed00dc1d71976de76bd4f8dfb6e885f2a (patch)
tree5b8e28cafb942cd7ed448e07e5e6076d95e73968 /lib/handlebars/utils.js
parent205c61cfb1acdb599bbdfcf2d356641254e09e5c (diff)
downloadhandlebars.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.js8
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;
-}