New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

hequelize

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hequelize - npm Package Compare versions

Comparing version 0.0.1-alpha.4 to 0.0.1-alpha.5

test/default_family.js

17

lib/Model.js

@@ -66,2 +66,11 @@ const Bluebird = require('bluebird')

if (this.defaultFamily) {
values = _.mapKeys(values, (v, k) => {
if (k.indexOf(':') === -1) {
return this.defaultFamily + ':' + k
}
return k
})
}
_.forOwn(values, (value, col) => {

@@ -141,3 +150,9 @@ if (value === undefined || value === null) {

this.columns.forEach(col => {
ret[col.name] = this.formatCellForGet(rawObject[col.name], col.type)
let colName = col.name
const df = this.defaultFamily
const value = this.formatCellForGet(rawObject[col.name], col.type)
if (df && col.name.indexOf(df) === 0) {
colName = colName.slice(df.length + 1)
}
ret[colName] = value
})

@@ -144,0 +159,0 @@ return ret

2

package.json
{
"name": "hequelize",
"version": "0.0.1-alpha.4",
"version": "0.0.1-alpha.5",
"description": "Simple HBase ORM based on hbase-rpc-client",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc