diff --git a/lib/node_modules/@stdlib/symbol/split/README.md b/lib/node_modules/@stdlib/symbol/split/README.md
new file mode 100644
index 000000000000..36e74de3dee1
--- /dev/null
+++ b/lib/node_modules/@stdlib/symbol/split/README.md
@@ -0,0 +1,121 @@
+
+
+# SplitSymbol
+
+> Split [symbol][mdn-symbol] which is used to define a custom string splitting behavior.
+
+
+
+
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var SplitSymbol = require( '@stdlib/symbol/split' );
+```
+
+#### SplitSymbol
+
+Split [`symbol`][mdn-symbol] which is used to define a custom string splitting behavior.
+
+```javascript
+var s = typeof SplitSymbol;
+// e.g., returns 'symbol'
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var SplitSymbol = require( '@stdlib/symbol/split' );
+
+var str;
+var obj;
+var parts;
+
+function splitHandler() {
+ return [ 'beep', 'boop' ];
+}
+
+if ( SplitSymbol ) {
+ str = 'beep-boop';
+ obj = {};
+ obj[ SplitSymbol ] = splitHandler;
+ parts = str.split( obj );
+ console.log( parts );
+ // => [ 'beep', 'boop' ]
+}
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[mdn-symbol]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol
+
+
+
+
diff --git a/lib/node_modules/@stdlib/symbol/split/docs/types/index.d.ts b/lib/node_modules/@stdlib/symbol/split/docs/types/index.d.ts
new file mode 100644
index 000000000000..5ebf2a04d11b
--- /dev/null
+++ b/lib/node_modules/@stdlib/symbol/split/docs/types/index.d.ts
@@ -0,0 +1,32 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+/**
+* Split symbol.
+*
+* @example
+* if ( SplitSymbol ) {
+* console.log( 'Split symbol is supported' );
+* }
+*/
+declare const SplitSymbol: symbol | null;
+
+
+// EXPORTS //
+
+export = SplitSymbol;
diff --git a/lib/node_modules/@stdlib/symbol/split/examples/index.js b/lib/node_modules/@stdlib/symbol/split/examples/index.js
new file mode 100644
index 000000000000..019e70d8856b
--- /dev/null
+++ b/lib/node_modules/@stdlib/symbol/split/examples/index.js
@@ -0,0 +1,40 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+var SplitSymbol = require( './../lib' );
+
+var str;
+var obj;
+var parts;
+
+function splitHandler() {
+ return [ 'beep', 'boop' ];
+}
+
+if ( SplitSymbol ) {
+ str = 'beep-boop';
+ obj = {};
+ obj[ SplitSymbol ] = splitHandler;
+ parts = str.split( obj );
+ console.log( parts );
+ // => [ 'beep', 'boop' ]
+} else {
+ console.log( 'Split symbol is not supported in this environment.' );
+}
diff --git a/lib/node_modules/@stdlib/symbol/split/lib/index.js b/lib/node_modules/@stdlib/symbol/split/lib/index.js
new file mode 100644
index 000000000000..6cd4522d27ea
--- /dev/null
+++ b/lib/node_modules/@stdlib/symbol/split/lib/index.js
@@ -0,0 +1,54 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+/**
+* Symbol used to define a custom string splitting behavior.
+*
+* @module @stdlib/symbol/split
+*
+* @example
+* var SplitSymbol = require( '@stdlib/symbol/split' );
+*
+* var str;
+* var obj;
+* var parts;
+*
+* function splitHandler() {
+* return [ 'beep', 'boop' ];
+* }
+*
+* if ( SplitSymbol ) {
+* str = 'beep-boop';
+* obj = {};
+* obj[ SplitSymbol ] = splitHandler;
+* parts = str.split( obj );
+* console.log( parts );
+* // => [ 'beep', 'boop' ]
+* }
+*/
+
+// MAIN //
+
+var main = require( './main.js' );
+
+
+// EXPORTS //
+
+module.exports = main;
diff --git a/lib/node_modules/@stdlib/symbol/split/lib/main.js b/lib/node_modules/@stdlib/symbol/split/lib/main.js
new file mode 100644
index 000000000000..8a71394f6ecb
--- /dev/null
+++ b/lib/node_modules/@stdlib/symbol/split/lib/main.js
@@ -0,0 +1,59 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var hasSplitSymbolSupport = require( '@stdlib/assert/has-split-symbol-support' );
+
+
+// MAIN //
+
+/**
+* Split symbol.
+*
+* @name SplitSymbol
+* @constant
+* @type {(symbol|null)}
+* @default
+*
+* @example
+* var str;
+* var obj;
+* var parts;
+*
+* function splitHandler() {
+* return [ 'beep', 'boop' ];
+* }
+*
+* if ( SplitSymbol ) {
+* str = 'beep-boop';
+* obj = {};
+* obj[ SplitSymbol ] = splitHandler;
+* parts = str.split( obj );
+* console.log( parts );
+* // => [ 'beep', 'boop' ]
+* }
+*/
+var SplitSymbol = ( hasSplitSymbolSupport() ) ? Symbol.split : null;
+
+
+// EXPORTS //
+
+module.exports = SplitSymbol;
diff --git a/lib/node_modules/@stdlib/symbol/split/package.json b/lib/node_modules/@stdlib/symbol/split/package.json
new file mode 100644
index 000000000000..1dbaed364cb3
--- /dev/null
+++ b/lib/node_modules/@stdlib/symbol/split/package.json
@@ -0,0 +1,57 @@
+{
+ "name": "@stdlib/symbol/split",
+ "version": "0.0.0",
+ "description": "Split symbol.",
+ "license": "Apache-2.0",
+ "author": {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ },
+ "contributors": [
+ {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ }
+ ],
+ "main": "./lib",
+ "directories": {
+ "doc": "./docs",
+ "example": "./examples",
+ "lib": "./lib",
+ "test": "./test"
+ },
+ "types": "./docs/types",
+ "scripts": {},
+ "homepage": "https://github.com/stdlib-js/stdlib",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/stdlib-js/stdlib.git"
+ },
+ "bugs": {
+ "url": "https://github.com/stdlib-js/stdlib/issues"
+ },
+ "dependencies": {},
+ "devDependencies": {},
+ "engines": {
+ "node": ">=0.10.0",
+ "npm": ">2.7.0"
+ },
+ "os": [
+ "aix",
+ "darwin",
+ "freebsd",
+ "linux",
+ "macos",
+ "openbsd",
+ "sunos",
+ "win32",
+ "windows"
+ ],
+ "keywords": [
+ "stdlib",
+ "symbol",
+ "sym",
+ "split",
+ "string"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/symbol/split/test/test.js b/lib/node_modules/@stdlib/symbol/split/test/test.js
new file mode 100644
index 000000000000..6c80754086cd
--- /dev/null
+++ b/lib/node_modules/@stdlib/symbol/split/test/test.js
@@ -0,0 +1,52 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var tape = require( 'tape' );
+var hasSplitSymbolSupport = require( '@stdlib/assert/has-split-symbol-support' );
+var isSymbol = require( '@stdlib/assert/is-symbol' );
+var Sym = require( './../lib' );
+
+
+// VARIABLES //
+
+var opts = {
+ 'skip': !hasSplitSymbolSupport()
+};
+
+
+// TESTS //
+
+tape( 'main export is a symbol in supporting environments (ES6/2015+) or otherwise null', function test( t ) {
+ t.ok( true, __filename );
+ if ( opts.skip ) {
+ t.strictEqual( Sym, null, 'main export is null' );
+ } else {
+ t.strictEqual( typeof Sym, 'symbol', 'main export is a symbol' );
+ t.strictEqual( isSymbol( Sym ), true, 'main export is a symbol' );
+ }
+ t.end();
+});
+
+tape( 'the main export is an alias for `Symbol.split`', opts, function test( t ) {
+ t.strictEqual( Sym, Symbol.split, 'returns expected value' );
+ t.end();
+});