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

mailjs

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mailjs - npm Package Compare versions

Comparing version 0.1.11 to 0.1.12

13

mail.js

@@ -75,6 +75,7 @@

html:
'<table border="0" cellpadding="0" cellspacing="0" !style>',
'<table border="0" cellpadding="0" cellspacing="0" !=class !=style>',
htmlClose:
'</table>',
binds: {
class: '',
style: ''

@@ -147,9 +148,5 @@ }

},
html: function( scope ) {
return (
'[table !=class style="width:100%"]' +
'<tr>' +
'<td' + scope.if( 'style', ' style="!style"' ) + '>'
);
},
html: '[table class="!class" style="width:100%;"]' +
'<tr>' +
'<td !=style>',
htmlClose:

@@ -156,0 +153,0 @@ '</td>' +

{
"name": "mailjs",
"version": "0.1.11",
"version": "0.1.12",
"description": "JavaScript HTML and text email renderer/formatter.",

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

@@ -529,2 +529,14 @@

});
it( 'should process tdiv\'s', function() {
expect(
mailjs.render({
src: '[tdiv class="foo"]',
html: true
})
).to.eql(
'<table border="0" cellpadding="0" cellspacing="0" class="foo" style="width:100%;"><tr><td>'
);
});
});

@@ -531,0 +543,0 @@

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