Tests if a value is a string with the boxed bug; splits to an array.
npm install split-if-boxed-bug-x href="https://travis-ci.org/Xotic750/split-if-boxed-bug-x"
title="Travis status"> src="https://travis-ci.org/Xotic750/split-if-boxed-bug-x.svg?branch=master"
alt="Travis status" height="18">
href="https://david-dm.org/Xotic750/split-if-boxed-bug-x"
title="Dependency status"> alt="Dependency status" height="18"/>
href="https://david-dm.org/Xotic750/split-if-boxed-bug-x?type=dev"
title="devDependency status"> alt="devDependency status" height="18"/>
href="https://badge.fury.io/js/split-if-boxed-bug-x"
title="npm version"> alt="npm version" height="18">
href="https://www.jsdelivr.com/package/npm/split-if-boxed-bug-x"
title="jsDelivr hits"> alt="jsDelivr hits" height="18">
href="https://bettercodehub.com/results/Xotic750/split-if-boxed-bug-x"
title="bettercodehub score"> alt="bettercodehub score" height="18">
href="https://coveralls.io/github/Xotic750/split-if-boxed-bug-x?branch=master"
title="Coverage Status"> alt="Coverage Status" height="18">
Tests if a value is a string with the boxed bug; splits to an array.
This method tests if a value is a string with the boxed bug; splits to an
array for iteration; otherwise returns the original value.
Kind: Exported function
Returns: \* - An array or characters if value was a string with the boxed bug;
otherwise the value.
| Param | Type | Description |
| ----- | --------------- | ----------------------- |
| value | \* | The value to be tested. |
Example
``js
import splitIfBoxedBug from 'split-if-boxed-bug-x';
// No boxed bug
console.log(splitIfBoxedBug('abc')); // 'abc'
// Boxed bug
console.log(splitIfBoxedBug('abc')); // ['a', 'b', 'c']
``