Commit 12b818e1 authored by project's avatar project

--no commit message

--no commit message
parent 1adfa0dc
var ctx = require('../context');
var BinStream = ctx.getLib('lib/bss/binarystream_v1_1');
var path = require('path');
function BSSHandler(prm)
{
this.repos_dir = prm.repos_dir;
this.name = prm.name;
}
BSSHandler.prototype.filepath = function()
{
return this.repos_dir + '/' + this.name + '.bss';
}
BSSHandler.prototype.exists = function()
{
var fp = this.filepath();
return path.existsSync(fp);
}
BSSHandler.prototype.open = function()
{
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment