govuk_tech_docs 3.4.0 → 3.4.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -1
- data/lib/assets/stylesheets/_govuk_tech_docs.scss +13 -0
- data/lib/govuk_tech_docs/version.rb +1 -1
- data/lib/source/favicon.ico +0 -0
- data/lib/source/layouts/_header.erb +13 -15
- data/node_modules/govuk-frontend/govuk/all-ie8.scss +8 -0
- data/node_modules/govuk-frontend/govuk/all.js +4918 -3796
- data/node_modules/govuk-frontend/govuk/common/closest-attribute-value.js +54 -49
- data/node_modules/govuk-frontend/govuk/common/govuk-frontend-version.js +17 -0
- data/node_modules/govuk-frontend/govuk/common/index.js +172 -152
- data/node_modules/govuk-frontend/govuk/common/normalise-dataset.js +334 -321
- data/node_modules/govuk-frontend/govuk/common.js +171 -151
- data/node_modules/govuk-frontend/govuk/components/_all.scss +3 -2
- data/node_modules/govuk-frontend/govuk/components/accordion/_index.scss +26 -7
- data/node_modules/govuk-frontend/govuk/components/accordion/accordion.js +2203 -1650
- data/node_modules/govuk-frontend/govuk/components/back-link/_index.scss +24 -16
- data/node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss +34 -11
- data/node_modules/govuk-frontend/govuk/components/button/_index.scss +49 -9
- data/node_modules/govuk-frontend/govuk/components/button/button.js +961 -916
- data/node_modules/govuk-frontend/govuk/components/character-count/character-count.js +2142 -2038
- data/node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss +6 -6
- data/node_modules/govuk-frontend/govuk/components/checkboxes/checkboxes.js +1204 -1145
- data/node_modules/govuk-frontend/govuk/components/details/details.js +826 -799
- data/node_modules/govuk-frontend/govuk/components/error-summary/error-summary.js +1097 -1044
- data/node_modules/govuk-frontend/govuk/components/exit-this-page/_exit-this-page.scss +2 -0
- data/node_modules/govuk-frontend/govuk/components/exit-this-page/_index.scss +97 -0
- data/node_modules/govuk-frontend/govuk/components/exit-this-page/exit-this-page.js +2120 -0
- data/node_modules/govuk-frontend/govuk/components/file-upload/_index.scss +6 -1
- data/node_modules/govuk-frontend/govuk/components/footer/_index.scss +0 -7
- data/node_modules/govuk-frontend/govuk/components/header/_index.scss +6 -0
- data/node_modules/govuk-frontend/govuk/components/header/header.js +683 -1003
- data/node_modules/govuk-frontend/govuk/components/input/_index.scss +15 -3
- data/node_modules/govuk-frontend/govuk/components/notification-banner/notification-banner.js +786 -751
- data/node_modules/govuk-frontend/govuk/components/radios/_index.scss +5 -5
- data/node_modules/govuk-frontend/govuk/components/radios/radios.js +1151 -1105
- data/node_modules/govuk-frontend/govuk/components/select/_index.scss +7 -1
- data/node_modules/govuk-frontend/govuk/components/skip-link/skip-link.js +1045 -1014
- data/node_modules/govuk-frontend/govuk/components/summary-list/_index.scss +107 -0
- data/node_modules/govuk-frontend/govuk/components/tabs/tabs.js +1514 -1268
- data/node_modules/govuk-frontend/govuk/components/tag/_index.scss +18 -18
- data/node_modules/govuk-frontend/govuk/components/textarea/_index.scss +8 -1
- data/node_modules/govuk-frontend/govuk/core/_all.scss +1 -0
- data/node_modules/govuk-frontend/govuk/core/_govuk-frontend-version.scss +5 -0
- data/node_modules/govuk-frontend/govuk/helpers/_colour.scss +5 -2
- data/node_modules/govuk-frontend/govuk/helpers/_focused.scss +1 -1
- data/node_modules/govuk-frontend/govuk/helpers/_font-faces.scss +1 -1
- data/node_modules/govuk-frontend/govuk/helpers/_visually-hidden.scss +12 -0
- data/node_modules/govuk-frontend/govuk/i18n.js +371 -364
- data/node_modules/govuk-frontend/govuk/objects/_template.scss +20 -0
- data/node_modules/govuk-frontend/govuk/objects/_width-container.scss +1 -1
- data/node_modules/govuk-frontend/govuk/settings/_colours-organisations.scss +4 -0
- data/node_modules/govuk-frontend/govuk/settings/_ie8.scss +16 -0
- data/node_modules/govuk-frontend/govuk/settings/_links.scss +5 -1
- data/node_modules/govuk-frontend/govuk/settings/_measurements.scss +5 -5
- data/node_modules/govuk-frontend/govuk/tools/_ie8.scss +38 -2
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/DOMTokenList.js +243 -241
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Date/now.js +14 -12
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Document.js +18 -16
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/classList.js +553 -545
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/closest.js +40 -36
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/dataset.js +257 -250
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/matches.js +22 -20
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/nextElementSibling.js +204 -197
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/previousElementSibling.js +204 -197
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element.js +109 -105
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Event.js +407 -399
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Function/prototype/bind.js +242 -238
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Object/defineProperty.js +73 -71
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/String/prototype/trim.js +15 -13
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Window.js +18 -16
- data/node_modules/govuk-frontend/govuk-prototype-kit/init.js +1 -0
- data/package-lock.json +7 -7
- data/package.json +1 -1
- metadata +8 -3
@@ -4,249 +4,253 @@
|
|
4
4
|
(factory());
|
5
5
|
}(this, (function () { 'use strict';
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
)
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
if (object === null || !(object instanceof Object || typeof object === 'object')) {
|
41
|
-
throw new TypeError('Object.defineProperty called on non-object');
|
42
|
-
}
|
43
|
-
|
44
|
-
if (!(descriptor instanceof Object)) {
|
45
|
-
throw new TypeError('Property description must be an object');
|
46
|
-
}
|
47
|
-
|
48
|
-
var propertyString = String(property);
|
49
|
-
var hasValueOrWritable = 'value' in descriptor || 'writable' in descriptor;
|
50
|
-
var getterType = 'get' in descriptor && typeof descriptor.get;
|
51
|
-
var setterType = 'set' in descriptor && typeof descriptor.set;
|
52
|
-
|
53
|
-
// handle descriptor.get
|
54
|
-
if (getterType) {
|
55
|
-
if (getterType !== 'function') {
|
56
|
-
throw new TypeError('Getter must be a function');
|
7
|
+
// @ts-nocheck
|
8
|
+
(function (undefined) {
|
9
|
+
|
10
|
+
// Detection from https://github.com/Financial-Times/polyfill-service/blob/master/packages/polyfill-library/polyfills/Object/defineProperty/detect.js
|
11
|
+
var detect = (
|
12
|
+
// In IE8, defineProperty could only act on DOM elements, so full support
|
13
|
+
// for the feature requires the ability to set a property on an arbitrary object
|
14
|
+
'defineProperty' in Object && (function() {
|
15
|
+
try {
|
16
|
+
var a = {};
|
17
|
+
Object.defineProperty(a, 'test', {value:42});
|
18
|
+
return true;
|
19
|
+
} catch(e) {
|
20
|
+
return false
|
21
|
+
}
|
22
|
+
}())
|
23
|
+
);
|
24
|
+
|
25
|
+
if (detect) return
|
26
|
+
|
27
|
+
// Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=Object.defineProperty&flags=always
|
28
|
+
(function (nativeDefineProperty) {
|
29
|
+
|
30
|
+
var supportsAccessors = Object.prototype.hasOwnProperty('__defineGetter__');
|
31
|
+
var ERR_ACCESSORS_NOT_SUPPORTED = 'Getters & setters cannot be defined on this javascript engine';
|
32
|
+
var ERR_VALUE_ACCESSORS = 'A property cannot both have accessors and be writable or have a value';
|
33
|
+
|
34
|
+
Object.defineProperty = function defineProperty(object, property, descriptor) {
|
35
|
+
|
36
|
+
// Where native support exists, assume it
|
37
|
+
if (nativeDefineProperty && (object === window || object === document || object === Element.prototype || object instanceof Element)) {
|
38
|
+
return nativeDefineProperty(object, property, descriptor);
|
57
39
|
}
|
58
|
-
|
59
|
-
|
40
|
+
|
41
|
+
if (object === null || !(object instanceof Object || typeof object === 'object')) {
|
42
|
+
throw new TypeError('Object.defineProperty called on non-object');
|
60
43
|
}
|
61
|
-
|
62
|
-
|
44
|
+
|
45
|
+
if (!(descriptor instanceof Object)) {
|
46
|
+
throw new TypeError('Property description must be an object');
|
63
47
|
}
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
if (
|
72
|
-
|
48
|
+
|
49
|
+
var propertyString = String(property);
|
50
|
+
var hasValueOrWritable = 'value' in descriptor || 'writable' in descriptor;
|
51
|
+
var getterType = 'get' in descriptor && typeof descriptor.get;
|
52
|
+
var setterType = 'set' in descriptor && typeof descriptor.set;
|
53
|
+
|
54
|
+
// handle descriptor.get
|
55
|
+
if (getterType) {
|
56
|
+
if (getterType !== 'function') {
|
57
|
+
throw new TypeError('Getter must be a function');
|
58
|
+
}
|
59
|
+
if (!supportsAccessors) {
|
60
|
+
throw new TypeError(ERR_ACCESSORS_NOT_SUPPORTED);
|
61
|
+
}
|
62
|
+
if (hasValueOrWritable) {
|
63
|
+
throw new TypeError(ERR_VALUE_ACCESSORS);
|
64
|
+
}
|
65
|
+
Object.__defineGetter__.call(object, propertyString, descriptor.get);
|
66
|
+
} else {
|
67
|
+
object[propertyString] = descriptor.value;
|
73
68
|
}
|
74
|
-
|
75
|
-
|
69
|
+
|
70
|
+
// handle descriptor.set
|
71
|
+
if (setterType) {
|
72
|
+
if (setterType !== 'function') {
|
73
|
+
throw new TypeError('Setter must be a function');
|
74
|
+
}
|
75
|
+
if (!supportsAccessors) {
|
76
|
+
throw new TypeError(ERR_ACCESSORS_NOT_SUPPORTED);
|
77
|
+
}
|
78
|
+
if (hasValueOrWritable) {
|
79
|
+
throw new TypeError(ERR_VALUE_ACCESSORS);
|
80
|
+
}
|
81
|
+
Object.__defineSetter__.call(object, propertyString, descriptor.set);
|
76
82
|
}
|
77
|
-
|
78
|
-
|
83
|
+
|
84
|
+
// OK to define value unconditionally - if a getter has been specified as well, an error would be thrown above
|
85
|
+
if ('value' in descriptor) {
|
86
|
+
object[propertyString] = descriptor.value;
|
79
87
|
}
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
return bound;
|
247
|
-
}
|
248
|
-
});
|
249
|
-
})
|
250
|
-
.call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
|
88
|
+
|
89
|
+
return object;
|
90
|
+
};
|
91
|
+
}(Object.defineProperty));
|
92
|
+
})
|
93
|
+
.call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
|
94
|
+
|
95
|
+
// @ts-nocheck
|
96
|
+
|
97
|
+
(function(undefined) {
|
98
|
+
// Detection from https://github.com/Financial-Times/polyfill-service/blob/master/packages/polyfill-library/polyfills/Function/prototype/bind/detect.js
|
99
|
+
var detect = 'bind' in Function.prototype;
|
100
|
+
|
101
|
+
if (detect) return
|
102
|
+
|
103
|
+
// Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=Function.prototype.bind&flags=always
|
104
|
+
Object.defineProperty(Function.prototype, 'bind', {
|
105
|
+
value: function bind(that) { // .length is 1
|
106
|
+
// add necessary es5-shim utilities
|
107
|
+
var $Array = Array;
|
108
|
+
var $Object = Object;
|
109
|
+
var ObjectPrototype = $Object.prototype;
|
110
|
+
var ArrayPrototype = $Array.prototype;
|
111
|
+
var Empty = function Empty() {};
|
112
|
+
var to_string = ObjectPrototype.toString;
|
113
|
+
var hasToStringTag = typeof Symbol === 'function' && typeof Symbol.toStringTag === 'symbol';
|
114
|
+
var isCallable; /* inlined from https://npmjs.com/is-callable */ var fnToStr = Function.prototype.toString, tryFunctionObject = function tryFunctionObject(value) { try { fnToStr.call(value); return true; } catch (e) { return false; } }, fnClass = '[object Function]', genClass = '[object GeneratorFunction]'; isCallable = function isCallable(value) { if (typeof value !== 'function') { return false; } if (hasToStringTag) { return tryFunctionObject(value); } var strClass = to_string.call(value); return strClass === fnClass || strClass === genClass; };
|
115
|
+
var array_slice = ArrayPrototype.slice;
|
116
|
+
var array_concat = ArrayPrototype.concat;
|
117
|
+
var array_push = ArrayPrototype.push;
|
118
|
+
var max = Math.max;
|
119
|
+
// /add necessary es5-shim utilities
|
120
|
+
|
121
|
+
// 1. Let Target be the this value.
|
122
|
+
var target = this;
|
123
|
+
// 2. If IsCallable(Target) is false, throw a TypeError exception.
|
124
|
+
if (!isCallable(target)) {
|
125
|
+
throw new TypeError('Function.prototype.bind called on incompatible ' + target);
|
126
|
+
}
|
127
|
+
// 3. Let A be a new (possibly empty) internal list of all of the
|
128
|
+
// argument values provided after thisArg (arg1, arg2 etc), in order.
|
129
|
+
// XXX slicedArgs will stand in for "A" if used
|
130
|
+
var args = array_slice.call(arguments, 1); // for normal call
|
131
|
+
// 4. Let F be a new native ECMAScript object.
|
132
|
+
// 11. Set the [[Prototype]] internal property of F to the standard
|
133
|
+
// built-in Function prototype object as specified in 15.3.3.1.
|
134
|
+
// 12. Set the [[Call]] internal property of F as described in
|
135
|
+
// 15.3.4.5.1.
|
136
|
+
// 13. Set the [[Construct]] internal property of F as described in
|
137
|
+
// 15.3.4.5.2.
|
138
|
+
// 14. Set the [[HasInstance]] internal property of F as described in
|
139
|
+
// 15.3.4.5.3.
|
140
|
+
var bound;
|
141
|
+
var binder = function () {
|
142
|
+
|
143
|
+
if (this instanceof bound) {
|
144
|
+
// 15.3.4.5.2 [[Construct]]
|
145
|
+
// When the [[Construct]] internal method of a function object,
|
146
|
+
// F that was created using the bind function is called with a
|
147
|
+
// list of arguments ExtraArgs, the following steps are taken:
|
148
|
+
// 1. Let target be the value of F's [[TargetFunction]]
|
149
|
+
// internal property.
|
150
|
+
// 2. If target has no [[Construct]] internal method, a
|
151
|
+
// TypeError exception is thrown.
|
152
|
+
// 3. Let boundArgs be the value of F's [[BoundArgs]] internal
|
153
|
+
// property.
|
154
|
+
// 4. Let args be a new list containing the same values as the
|
155
|
+
// list boundArgs in the same order followed by the same
|
156
|
+
// values as the list ExtraArgs in the same order.
|
157
|
+
// 5. Return the result of calling the [[Construct]] internal
|
158
|
+
// method of target providing args as the arguments.
|
159
|
+
|
160
|
+
var result = target.apply(
|
161
|
+
this,
|
162
|
+
array_concat.call(args, array_slice.call(arguments))
|
163
|
+
);
|
164
|
+
if ($Object(result) === result) {
|
165
|
+
return result;
|
166
|
+
}
|
167
|
+
return this;
|
168
|
+
|
169
|
+
} else {
|
170
|
+
// 15.3.4.5.1 [[Call]]
|
171
|
+
// When the [[Call]] internal method of a function object, F,
|
172
|
+
// which was created using the bind function is called with a
|
173
|
+
// this value and a list of arguments ExtraArgs, the following
|
174
|
+
// steps are taken:
|
175
|
+
// 1. Let boundArgs be the value of F's [[BoundArgs]] internal
|
176
|
+
// property.
|
177
|
+
// 2. Let boundThis be the value of F's [[BoundThis]] internal
|
178
|
+
// property.
|
179
|
+
// 3. Let target be the value of F's [[TargetFunction]] internal
|
180
|
+
// property.
|
181
|
+
// 4. Let args be a new list containing the same values as the
|
182
|
+
// list boundArgs in the same order followed by the same
|
183
|
+
// values as the list ExtraArgs in the same order.
|
184
|
+
// 5. Return the result of calling the [[Call]] internal method
|
185
|
+
// of target providing boundThis as the this value and
|
186
|
+
// providing args as the arguments.
|
187
|
+
|
188
|
+
// equiv: target.call(this, ...boundArgs, ...args)
|
189
|
+
return target.apply(
|
190
|
+
that,
|
191
|
+
array_concat.call(args, array_slice.call(arguments))
|
192
|
+
);
|
193
|
+
|
194
|
+
}
|
195
|
+
|
196
|
+
};
|
197
|
+
|
198
|
+
// 15. If the [[Class]] internal property of Target is "Function", then
|
199
|
+
// a. Let L be the length property of Target minus the length of A.
|
200
|
+
// b. Set the length own property of F to either 0 or L, whichever is
|
201
|
+
// larger.
|
202
|
+
// 16. Else set the length own property of F to 0.
|
203
|
+
|
204
|
+
var boundLength = max(0, target.length - args.length);
|
205
|
+
|
206
|
+
// 17. Set the attributes of the length own property of F to the values
|
207
|
+
// specified in 15.3.5.1.
|
208
|
+
var boundArgs = [];
|
209
|
+
for (var i = 0; i < boundLength; i++) {
|
210
|
+
array_push.call(boundArgs, '$' + i);
|
211
|
+
}
|
212
|
+
|
213
|
+
// XXX Build a dynamic function with desired amount of arguments is the only
|
214
|
+
// way to set the length property of a function.
|
215
|
+
// In environments where Content Security Policies enabled (Chrome extensions,
|
216
|
+
// for ex.) all use of eval or Function costructor throws an exception.
|
217
|
+
// However in all of these environments Function.prototype.bind exists
|
218
|
+
// and so this code will never be executed.
|
219
|
+
bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this, arguments); }')(binder);
|
220
|
+
|
221
|
+
if (target.prototype) {
|
222
|
+
Empty.prototype = target.prototype;
|
223
|
+
bound.prototype = new Empty();
|
224
|
+
// Clean up dangling references.
|
225
|
+
Empty.prototype = null;
|
226
|
+
}
|
227
|
+
|
228
|
+
// TODO
|
229
|
+
// 18. Set the [[Extensible]] internal property of F to true.
|
230
|
+
|
231
|
+
// TODO
|
232
|
+
// 19. Let thrower be the [[ThrowTypeError]] function Object (13.2.3).
|
233
|
+
// 20. Call the [[DefineOwnProperty]] internal method of F with
|
234
|
+
// arguments "caller", PropertyDescriptor {[[Get]]: thrower, [[Set]]:
|
235
|
+
// thrower, [[Enumerable]]: false, [[Configurable]]: false}, and
|
236
|
+
// false.
|
237
|
+
// 21. Call the [[DefineOwnProperty]] internal method of F with
|
238
|
+
// arguments "arguments", PropertyDescriptor {[[Get]]: thrower,
|
239
|
+
// [[Set]]: thrower, [[Enumerable]]: false, [[Configurable]]: false},
|
240
|
+
// and false.
|
241
|
+
|
242
|
+
// TODO
|
243
|
+
// NOTE Function objects created using Function.prototype.bind do not
|
244
|
+
// have a prototype property or the [[Code]], [[FormalParameters]], and
|
245
|
+
// [[Scope]] internal properties.
|
246
|
+
// XXX can't delete prototype in pure-js.
|
247
|
+
|
248
|
+
// 22. Return F.
|
249
|
+
return bound;
|
250
|
+
}
|
251
|
+
});
|
252
|
+
})
|
253
|
+
.call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
|
251
254
|
|
252
255
|
})));
|
256
|
+
//# sourceMappingURL=bind.js.map
|