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

bellajs

Package Overview
Dependencies
Maintainers
1
Versions
147
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bellajs - npm Package Compare versions

Comparing version 5.4.14 to 5.4.15

4

dist/bella.min.js
/**
* bellajs
* v5.4.14
* built: Wed, 21 Sep 2016 07:41:22 GMT
* v5.4.15
* built: Wed, 21 Sep 2016 08:22:24 GMT
* git: https://github.com/ndaidong/bellajs

@@ -6,0 +6,0 @@ * author: @ndaidong

{
"version": "5.4.14",
"version": "5.4.15",
"name": "bellajs",

@@ -4,0 +4,0 @@ "description": "A useful helper for any javascript program",

@@ -20,6 +20,20 @@ /**

let e = 'hihihihihi';
assert.deepEquals(a, e, `bella.repeat(x) must return ${e}`);
assert.deepEquals(a, e, `bella.repeat(x) must return "${e}"`);
assert.end();
});
test('Testing .repeat(false, 5) method fail', (assert) => {
let a = bella.repeat(false, 5);
let e = '';
assert.deepEquals(a, e, `bella.repeat(false, 5) must return "${e}"`);
assert.end();
});
test('Testing .repeat("Hello", -1) method fail', (assert) => {
let a = bella.repeat('Hello', -1);
let e = 'Hello';
assert.deepEquals(a, e, `bella.repeat("Hello", -1) must return "${e}"`);
assert.end();
});
// encode

@@ -26,0 +40,0 @@ test('Testing .encode(String s) method', (assert) => {

Sorry, the diff of this file is not supported yet

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