UNPKG

pimatic

Version:

A home automation server and framework for the Raspberry PI running on node.js

15 lines (11 loc) 327 B
const Utils = require('../oracle/utils'); function BlobHelper(columnName, value) { this.columnName = columnName; this.value = value; this.returning = false; } BlobHelper.prototype.toString = function() { return '[object BlobHelper:' + this.columnName + ']'; }; Utils.BlobHelper = BlobHelper; module.exports = Utils;