0a5ab058a6
- Angular 12 application with PrimeNG components - 5 existing Cypress e2e test suites - SCSS styling with BEM naming convention - i18n support (10 languages) - Leaflet map integration - Complete component hierarchy and routing structure This baseline will be used for Angular → React migration.
20 lines
497 B
JavaScript
20 lines
497 B
JavaScript
'use strict';
|
|
|
|
var $TypeError = require('es-errors/type');
|
|
|
|
var callBound = require('call-bound');
|
|
|
|
var $dataViewByteOffset = callBound('DataView.prototype.byteOffset', true);
|
|
|
|
var isDataView = require('is-data-view');
|
|
|
|
// node <= 0.10, < 0.11.4 has a nonconfigurable own property instead of a prototype getter
|
|
/** @type {import('.')} */
|
|
module.exports = $dataViewByteOffset || function byteOffset(x) {
|
|
if (!isDataView(x)) {
|
|
throw new $TypeError('not a DataView');
|
|
}
|
|
|
|
return x.byteOffset;
|
|
};
|