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

nativescript-toast

Package Overview
Dependencies
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nativescript-toast - npm Package Compare versions

Comparing version 1.1.3 to 1.1.4

2

package.json
{
"name": "nativescript-toast",
"version": "1.1.3",
"version": "1.1.4",
"description": "A NativeScript Toast Plugin for Android.",

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

@@ -1,14 +0,16 @@

/*global exports*/
/*global module*/
var Toast = {
text: "",
makeText: function(text) {
this.text = text;
return this;
},
show: function() {
console.log(this.text);
}
var Toast = function(){
this.text = '';
};
exports.Toast = Toast;
Toast.prototype.makeText = function(text) {
this.text = text;
return this;
};
Toast.prototype.show = function() {
console.log(this.text);
};
module.exports = new Toast();
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