mirror of
https://github.com/nodejs/node.git
synced 2025-05-03 05:46:19 +00:00

PR-URL: https://github.com/nodejs/node/pull/18566 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
7 lines
219 B
JavaScript
7 lines
219 B
JavaScript
/* eslint-disable node-core/required-modules */
|
|
|
|
import assert from 'assert';
|
|
import binding from './build/binding.node';
|
|
assert.strictEqual(binding.hello(), 'world');
|
|
console.log('binding.hello() =', binding.hello());
|