Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

canvas-native

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

canvas-native - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

2

dist/lib/types/checklist.js

@@ -50,3 +50,3 @@ 'use strict';

get: function get() {
return new RegExp('^' + MARKDOWN_MATCH + '$');
return new RegExp('^' + MARKDOWN_MATCH + '$', 'i');
}

@@ -53,0 +53,0 @@ }, {

@@ -18,3 +18,3 @@ import UnorderedList from './unordered-list';

static get markdownPattern() {
return new RegExp(`^${MARKDOWN_MATCH}$`);
return new RegExp(`^${MARKDOWN_MATCH}$`, 'i');
}

@@ -21,0 +21,0 @@

{
"name": "canvas-native",
"description": "Utilities for working with the native Canvas format",
"version": "2.0.0",
"version": "2.0.1",
"author": "Jonathan Clem <jonathan@usecanvas.com>",

@@ -6,0 +6,0 @@ "bugs": "https://github.com/usecanvas/canvas-native/issues",

@@ -39,2 +39,7 @@ import Checklist from '../../../lib/types/checklist';

});
it('parses uppercase X', () => {
line = Checklist[matchType](matchSource.replace(/x/, 'X'));
expect(line).to.be.an.instanceof(Checklist);
});
});

@@ -41,0 +46,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