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

windows-1250

Package Overview
Dependencies
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

windows-1250 - npm Package Compare versions

Comparing version

to
1.0.1

16

package.json
{
"name": "windows-1250",
"version": "1.0.0",
"version": "1.0.1",
"description": "A robust windows-1250 encoder/decoder written in JavaScript.",

@@ -36,16 +36,10 @@ "homepage": "https://mths.be/windows-1250",

"build": "node scripts/transform-data.js",
"test": "node tests/tests.js"
"test": "node tests/tests.js",
"cover": "istanbul cover --report html --verbose --dir coverage tests/tests.js"
},
"devDependencies": {
"coveralls": "^2.11.6",
"grunt": "^0.4.5",
"grunt-shell": "^1.1.2",
"grunt-template": "^0.2.3",
"istanbul": "^0.4.2",
"jsesc": "^2.1.0",
"qunit-extras": "^1.4.5",
"qunitjs": "~1.11.0",
"requirejs": "^2.1.22",
"string.fromcodepoint": "^0.2.1"
"jsesc": "^3.0.2",
"lodash.template": "^4.5.0"
}
}

@@ -1,2 +0,2 @@

# windows-1250 [![Build status](https://travis-ci.org/mathiasbynens/windows-1250.svg?branch=master)](https://travis-ci.org/mathiasbynens/windows-1250) [![Code coverage status](https://coveralls.io/repos/mathiasbynens/windows-1250/badge.svg)](https://coveralls.io/r/mathiasbynens/windows-1250) [![Dependency status](https://gemnasium.com/mathiasbynens/windows-1250.svg)](https://gemnasium.com/mathiasbynens/windows-1250)
# windows-1250 [![Build status](https://github.com/mathiasbynens/windows-1250/workflows/run-checks/badge.svg)](https://github.com/mathiasbynens/windows-1250/actions?query=workflow%3Arun-checks) [![windows-1250 on npm](https://img.shields.io/npm/v/windows-1250)](https://www.npmjs.com/package/windows-1250)

@@ -21,30 +21,8 @@ _windows-1250_ is a robust JavaScript implementation of [the windows-1250 character encoding as defined by the Encoding Standard](https://encoding.spec.whatwg.org/#windows-1250).

In [Node.js](https://nodejs.org/), [io.js](https://iojs.org/), [Narwhal](http://narwhaljs.org/), and [RingoJS](http://ringojs.org/):
In [Node.js](https://nodejs.org/):
```js
var windows1250 = require('windows-1250');
const windows1250 = require('windows-1250');
```
In [Rhino](https://www.mozilla.org/rhino/):
```js
load('windows1250.js');
```
Using an AMD loader like [RequireJS](http://requirejs.org/):
```js
require(
{
'paths': {
'windows-1250': 'path/to/windows-1250'
}
},
['windows-1250'],
function(windows1250) {
console.log(windows1250);
}
);
```
## API

@@ -72,3 +50,3 @@

const encodedData = windows1250.encode(text, {
'mode': 'html'
mode: 'html'
});

@@ -91,3 +69,3 @@ // If `text` contains a symbol that cannot be represented in windows-1250,

const text = windows1250.decode(encodedData, {
'mode': 'fatal'
mode: 'fatal'
});

@@ -100,6 +78,2 @@ // If `encodedData` contains an invalid byte for the windows-1250 encoding,

## Support
_windows-1250_ is designed to work in at least Node.js v0.10.0, io.js v1.0.0, Narwhal 0.3.2, RingoJS 0.8-0.11, PhantomJS 1.9.0, Rhino 1.7RC4, as well as old and modern versions of Chrome, Firefox, Safari, Opera, Edge, and Internet Explorer.
## Notes

@@ -106,0 +80,0 @@

@@ -1,20 +0,4 @@

/*! https://mths.be/windows-1250 v1.0.0 by @mathias | MIT license */
;(function(root) {
/*! https://mths.be/windows-1250 v1.0.1 by @mathias | MIT license */
;(function() {
// Detect free variables `exports`.
var freeExports = typeof exports == 'object' && exports;
// Detect free variable `module`.
var freeModule = typeof module == 'object' && module &&
module.exports == freeExports && module;
// Detect free variable `global`, from Node.js/io.js or Browserified code,
// and use it as `root`.
var freeGlobal = typeof global == 'object' && global;
if (freeGlobal.global === freeGlobal || freeGlobal.window === freeGlobal) {
root = freeGlobal;
}
/*--------------------------------------------------------------------------*/
var object = {};

@@ -36,3 +20,3 @@ var hasOwnProperty = object.hasOwnProperty;

// Else, `mode == 'fatal'`.
throw Error();
throw new Error();
};

@@ -117,5 +101,5 @@

var windows1250 = {
'encode': encode,
'decode': decode,
'labels': [
encode: encode,
decode: decode,
labels: [
'cp1250',

@@ -125,27 +109,7 @@ 'windows-1250',

],
'version': '1.0.0'
version: '1.0.1',
};
// Some AMD build optimizers, like r.js, check for specific condition patterns
// like the following:
if (
typeof define == 'function' &&
typeof define.amd == 'object' &&
define.amd
) {
define(function() {
return windows1250;
});
} else if (freeExports && !freeExports.nodeType) {
if (freeModule) { // in Node.js, io.js or RingoJS v0.8.0+
freeModule.exports = windows1250;
} else { // in Narwhal or RingoJS v0.7.0-
for (var key in windows1250) {
windows1250.hasOwnProperty(key) && (freeExports[key] = windows1250[key]);
}
}
} else { // in Rhino or a web browser
root.windows1250 = windows1250;
}
module.exports = windows1250;
}(this));
}());