main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
395 bytes
|
Line | |
---|
1 | 'use strict';
|
---|
2 |
|
---|
3 | var define = require('define-properties');
|
---|
4 |
|
---|
5 | var getPolyfill = require('./polyfill');
|
---|
6 |
|
---|
7 | module.exports = function shimArrayBufferSlice() {
|
---|
8 | if (typeof ArrayBuffer === 'function') {
|
---|
9 | var polyfill = getPolyfill();
|
---|
10 | define(
|
---|
11 | ArrayBuffer.prototype,
|
---|
12 | { slice: polyfill },
|
---|
13 | { slice: function () { return ArrayBuffer.prototype.slice !== polyfill; } }
|
---|
14 | );
|
---|
15 | }
|
---|
16 |
|
---|
17 | return polyfill;
|
---|
18 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.