Skip to content

Commit

Permalink
Remove spaces from sort keys
Browse files Browse the repository at this point in the history
  • Loading branch information
fbennett committed Mar 4, 2016
1 parent bac73ce commit 2e29206
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/node_key.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ CSL.Node.key = {
if (state.sys.normalizeUnicode) {
keystring = state.sys.normalizeUnicode(keystring);
}
keystring = keystring.split(" ").join("");
//SNIP-START
if (debug) {
CSL.debug("keystring: " + keystring + " " + typeof keystring);
Expand Down

0 comments on commit 2e29206

Please sign in to comment.