nisaacson/riak-streaming-node

View on GitHub
lib/get-index-key.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = function getIndexKey(baseKey, value) {
  var valueType = typeof value
  var postfix
  if (valueType === 'number') {
    postfix = 'int'
  } else {
    postfix = 'bin'
  }
  return baseKey + '_' + postfix
}