UNPKG

pimatic

Version:

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

16 lines (12 loc) 340 B
'use strict'; var 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;