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

raptor-render-context

Package Overview
Dependencies
Maintainers
2
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

raptor-render-context - npm Package Compare versions

Comparing version 0.2.8-beta to 0.2.9-beta

22

lib/Context.js

@@ -17,3 +17,23 @@ /*

'use strict';
var StringBuilder = require('raptor-strings/StringBuilder');
function StringBuilder() {
this.str = '';
}
StringBuilder.prototype = {
write: function(str) {
this.str += str;
return this;
},
/**
* Converts the string buffer into a String.
*
* @returns {String} The built String
*/
toString: function() {
return this.str;
}
};
var logger = require('raptor-logging').logger(module);

@@ -20,0 +40,0 @@ var EventEmitter = require('events').EventEmitter;

2

package.json

@@ -29,3 +29,3 @@ {

},
"version": "0.2.8-beta"
"version": "0.2.9-beta"
}
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