summaryrefslogtreecommitdiffstats
path: root/scripts/export-data.js
diff options
context:
space:
mode:
authorMathias Bynens <mathias@qiwi.be>2013-07-01 17:56:12 +0200
committerMathias Bynens <mathias@qiwi.be>2013-07-01 17:57:03 +0200
commitef5c48beadbf5d5812bd03f61aa131686cde92c8 (patch)
treee0dad1f7ffccf921507567f9d23543cebaf1d7e5 /scripts/export-data.js
parent169baf834329203457a756f334d0759241c0734b (diff)
downloadhe-ef5c48beadbf5d5812bd03f61aa131686cde92c8.zip
he-ef5c48beadbf5d5812bd03f61aa131686cde92c8.tar.gz
he-ef5c48beadbf5d5812bd03f61aa131686cde92c8.tar.bz2
Tweak template variable names
Diffstat (limited to 'scripts/export-data.js')
-rw-r--r--scripts/export-data.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/export-data.js b/scripts/export-data.js
index f73f22a..81f384d 100644
--- a/scripts/export-data.js
+++ b/scripts/export-data.js
@@ -22,9 +22,9 @@ var readJSON = function(fileName) {
module.exports = {
'encodeMap': readJSON('encode-map'),
- 'encodeSingleSymbol': regenerate.fromCodePoints(readJSON('encode-lone-code-points')),
+ 'encodeSingleSymbols': regenerate.fromCodePoints(readJSON('encode-lone-code-points')),
'encodeMultipleSymbols': stringEscape(readJSON('encode-paired-symbols').join('|')),
- 'decodeTable': readJSON('decode-map-overrides'),
+ 'decodeOverrides': readJSON('decode-map-overrides'),
'decodeMap': readJSON('decode-map'),
'decodeMapLegacy': readJSON('decode-map-legacy'),
'legacyReferences': readJSON('decode-legacy-named-references').join('|'),