Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

637371 Views

Latest files of /cody/Khushigupta8/Hotel-Management-Webpage/node_modules/iconv-lite/lib

bom-handling.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/iconv-lite/lib/bom-handling.js
127 Views
0 Comments
"use strict";

var BOMChar = '\uFEFF';

exports.PrependBOM = PrependBOMWrapper
function PrependBOMWrapper(encoder, options) {
this.encoder = encoder;
this.addBOM = true;
extend-node.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/iconv-lite/lib/extend-node.js
127 Views
0 Comments
"use strict";
var Buffer = require("buffer").Buffer;
// Note: not polyfilled with safer-buffer on a purpose, as overrides Buffer

// == Extend Node primitives to use iconv-lite =================================

module.exports = function (iconv) {
var original = undefined; // Place to keep original methods.
index.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/iconv-lite/lib/index.js
125 Views
0 Comments
"use strict";

// Some environments don't have global Buffer (e.g. React Native).
// Solution would be installing npm modules "buffer" and "stream" explicitly.
var Buffer = require("safer-buffer").Buffer;

var bomHandling = require("./bom-handling"),
iconv = module.exports;
index.d.ts cody/Khushigupta8/Hotel-Management-Webpage/node_modules/iconv-lite/lib/index.d.ts
94 Views
0 Comments
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
* REQUIREMENT: This definition is dependent on the @types/node definition.
* Install with `npm install @types/node --save-dev`
*--------------------------------------------------------------------------------------------*/

declare module 'iconv-lite' {
streams.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/iconv-lite/lib/streams.js
129 Views
0 Comments
"use strict";

var Buffer = require("buffer").Buffer,
Transform = require("stream").Transform;


// == Exports ==================================================================
module.exports = function(iconv) {