Spaces:
Sleeping
Sleeping
{"version":3,"sources":["Arrow.node.ts"],"names":[],"mappings":"AAAA,6DAA6D;AAC7D,+DAA+D;AAC/D,wDAAwD;AACxD,6DAA6D;AAC7D,oDAAoD;AACpD,6DAA6D;AAC7D,6DAA6D;AAC7D,EAAE;AACF,+CAA+C;AAC/C,EAAE;AACF,6DAA6D;AAC7D,8DAA8D;AAC9D,yDAAyD;AACzD,4DAA4D;AAC5D,0DAA0D;AAC1D,qBAAqB;AAErB,OAAO,cAAc,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC1C,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,wBAAwB,EAAE,MAAM,mBAAmB,CAAC;AAC7D,OAAO,EAAE,kCAAkC,EAAE,MAAM,kBAAkB,CAAC;AACtE,OAAO,EAAE,kCAAkC,EAAE,MAAM,kBAAkB,CAAC;AAEtE,cAAc,CAAC,YAAY,GAAG,YAAY,CAAC;AAC3C,OAAO,CAAC,aAAa,CAAC,GAAG,wBAAwB,CAAC;AAClD,iBAAiB,CAAC,aAAa,CAAC,GAAG,kCAAkC,CAAC;AACtE,iBAAiB,CAAC,aAAa,CAAC,GAAG,kCAAkC,CAAC;AAEtE,cAAc,aAAa,CAAC","file":"Arrow.node.js","sourcesContent":["// Licensed to the Apache Software Foundation (ASF) under one\n// or more contributor license agreements. See the NOTICE file\n// distributed with this work for additional information\n// regarding copyright ownership. The ASF licenses this file\n// to you under the Apache License, Version 2.0 (the\n// \"License\"); you may not use this file except in compliance\n// with the License. You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing,\n// software distributed under the License is distributed on an\n// \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n// KIND, either express or implied. See the License for the\n// specific language governing permissions and limitations\n// under the License.\n\nimport streamAdapters from './io/adapters';\nimport { Builder } from './builder/index';\nimport { RecordBatchReader } from './ipc/reader';\nimport { RecordBatchWriter } from './ipc/writer';\nimport { toNodeStream } from './io/node/iterable';\nimport { builderThroughNodeStream } from './io/node/builder';\nimport { recordBatchReaderThroughNodeStream } from './io/node/reader';\nimport { recordBatchWriterThroughNodeStream } from './io/node/writer';\n\nstreamAdapters.toNodeStream = toNodeStream;\nBuilder['throughNode'] = builderThroughNodeStream;\nRecordBatchReader['throughNode'] = recordBatchReaderThroughNodeStream;\nRecordBatchWriter['throughNode'] = recordBatchWriterThroughNodeStream;\n\nexport * from './Arrow.dom';\n"]} |