Files
Kmake/test/parallel/test-instanceof.js
2026-05-26 23:36:42 -07:00

12 lines
245 B
JavaScript

'use strict';
require('../common');
const assert = require('assert');
// Regression test for instanceof, see
// https://github.com/nodejs/node/issues/7592
const F = () => {};
F.prototype = {};
assert({ __proto__: F.prototype } instanceof F);