Implemented URL query parsing for initial token /opa/?token=abcde
[src/app-framework-demo.git] / afb-client / bower_components / jszip / lib / deprecatedPublicUtils.js
1 'use strict';
2 var utils = require('./utils');
3
4 /**
5  * @deprecated
6  * This function will be removed in a future version without replacement.
7  */
8 exports.string2binary = function(str) {
9     return utils.string2binary(str);
10 };
11
12 /**
13  * @deprecated
14  * This function will be removed in a future version without replacement.
15  */
16 exports.string2Uint8Array = function(str) {
17     return utils.transformTo("uint8array", str);
18 };
19
20 /**
21  * @deprecated
22  * This function will be removed in a future version without replacement.
23  */
24 exports.uint8Array2String = function(array) {
25     return utils.transformTo("string", array);
26 };
27
28 /**
29  * @deprecated
30  * This function will be removed in a future version without replacement.
31  */
32 exports.string2Blob = function(str) {
33     var buffer = utils.transformTo("arraybuffer", str);
34     return utils.arrayBuffer2Blob(buffer);
35 };
36
37 /**
38  * @deprecated
39  * This function will be removed in a future version without replacement.
40  */
41 exports.arrayBuffer2Blob = function(buffer) {
42     return utils.arrayBuffer2Blob(buffer);
43 };
44
45 /**
46  * @deprecated
47  * This function will be removed in a future version without replacement.
48  */
49 exports.transformTo = function(outputType, input) {
50     return utils.transformTo(outputType, input);
51 };
52
53 /**
54  * @deprecated
55  * This function will be removed in a future version without replacement.
56  */
57 exports.getTypeOf = function(input) {
58     return utils.getTypeOf(input);
59 };
60
61 /**
62  * @deprecated
63  * This function will be removed in a future version without replacement.
64  */
65 exports.checkSupport = function(type) {
66     return utils.checkSupport(type);
67 };
68
69 /**
70  * @deprecated
71  * This value will be removed in a future version without replacement.
72  */
73 exports.MAX_VALUE_16BITS = utils.MAX_VALUE_16BITS;
74
75 /**
76  * @deprecated
77  * This value will be removed in a future version without replacement.
78  */
79 exports.MAX_VALUE_32BITS = utils.MAX_VALUE_32BITS;
80
81
82 /**
83  * @deprecated
84  * This function will be removed in a future version without replacement.
85  */
86 exports.pretty = function(str) {
87     return utils.pretty(str);
88 };
89
90 /**
91  * @deprecated
92  * This function will be removed in a future version without replacement.
93  */
94 exports.findCompression = function(compressionMethod) {
95     return utils.findCompression(compressionMethod);
96 };
97
98 /**
99  * @deprecated
100  * This function will be removed in a future version without replacement.
101  */
102 exports.isRegExp = function (object) {
103     return utils.isRegExp(object);
104 };
105