-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from martinsumner/develop-2.9
Develop 2.9
- Loading branch information
Showing
42 changed files
with
1,308 additions
and
362 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,15 +3,7 @@ notifications: | |
webhooks: http://basho-engbot.herokuapp.com/travis?key=24764f4f9a0433f76a00ad56a7551242cbcb8a7f | ||
email: [email protected] | ||
otp_release: | ||
- 17.0 | ||
- 17.4 | ||
- 17.3 | ||
- R16B03-1 | ||
- R16B03 | ||
- R16B02 | ||
- R16B01 | ||
- R16B | ||
- R15B03 | ||
- R15B02 | ||
- R15B01 | ||
- R15B | ||
- R14B04 | ||
- R14B03 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ REBAR=./rebar | |
all: | ||
@$(REBAR) prepare-deps | ||
|
||
edoc: | ||
edoc: all | ||
@$(REBAR) doc | ||
|
||
test: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
%% @author Bob Ippolito <[email protected]> | ||
%% @copyright 2008 Mochi Media, Inc. | ||
%% | ||
%% Permission is hereby granted, free of charge, to any person obtaining a | ||
%% copy of this software and associated documentation files (the "Software"), | ||
%% to deal in the Software without restriction, including without limitation | ||
%% the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
%% and/or sell copies of the Software, and to permit persons to whom the | ||
%% Software is furnished to do so, subject to the following conditions: | ||
%% | ||
%% The above copyright notice and this permission notice shall be included in | ||
%% all copies or substantial portions of the Software. | ||
%% | ||
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
%% THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
%% FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
%% DEALINGS IN THE SOFTWARE. | ||
|
||
%% @doc String Formatting for Erlang, inspired by Python 2.6 | ||
%% (<a href="http://www.python.org/dev/peps/pep-3101/">PEP 3101</a>). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
%% @author Bob Ippolito <[email protected]> | ||
%% @copyright 2008 Mochi Media, Inc. | ||
%% | ||
%% Permission is hereby granted, free of charge, to any person obtaining a | ||
%% copy of this software and associated documentation files (the "Software"), | ||
%% to deal in the Software without restriction, including without limitation | ||
%% the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
%% and/or sell copies of the Software, and to permit persons to whom the | ||
%% Software is furnished to do so, subject to the following conditions: | ||
%% | ||
%% The above copyright notice and this permission notice shall be included in | ||
%% all copies or substantial portions of the Software. | ||
%% | ||
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
%% THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
%% FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
%% DEALINGS IN THE SOFTWARE. | ||
|
||
%% @doc Formatter that understands records. | ||
%% | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
%% @author Bob Ippolito <[email protected]> | ||
%% @copyright 2008 Mochi Media, Inc. | ||
%% | ||
%% Permission is hereby granted, free of charge, to any person obtaining a | ||
%% copy of this software and associated documentation files (the "Software"), | ||
%% to deal in the Software without restriction, including without limitation | ||
%% the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
%% and/or sell copies of the Software, and to permit persons to whom the | ||
%% Software is furnished to do so, subject to the following conditions: | ||
%% | ||
%% The above copyright notice and this permission notice shall be included in | ||
%% all copies or substantial portions of the Software. | ||
%% | ||
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
%% THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
%% FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
%% DEALINGS IN THE SOFTWARE. | ||
|
||
%% @doc Template module for a mochifmt formatter. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,25 @@ | ||
%% @author Bob Ippolito <[email protected]> | ||
%% @copyright 2010 Mochi Media, Inc. | ||
%% | ||
%% Permission is hereby granted, free of charge, to any person obtaining a | ||
%% copy of this software and associated documentation files (the "Software"), | ||
%% to deal in the Software without restriction, including without limitation | ||
%% the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
%% and/or sell copies of the Software, and to permit persons to whom the | ||
%% Software is furnished to do so, subject to the following conditions: | ||
%% | ||
%% The above copyright notice and this permission notice shall be included in | ||
%% all copies or substantial portions of the Software. | ||
%% | ||
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
%% THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
%% FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
%% DEALINGS IN THE SOFTWARE. | ||
|
||
|
||
%% @doc Abuse module constant pools as a "read-only shared heap" (since erts 5.6) | ||
%% <a href="http://www.erlang.org/pipermail/erlang-questions/2009-March/042503.html">[1]</a>. | ||
-module(mochiglobal). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
%% @author Bob Ippolito <[email protected]> | ||
%% @copyright 2006 Mochi Media, Inc. | ||
%% | ||
%% Permission is hereby granted, free of charge, to any person obtaining a | ||
%% copy of this software and associated documentation files (the "Software"), | ||
%% to deal in the Software without restriction, including without limitation | ||
%% the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
%% and/or sell copies of the Software, and to permit persons to whom the | ||
%% Software is furnished to do so, subject to the following conditions: | ||
%% | ||
%% The above copyright notice and this permission notice shall be included in | ||
%% all copies or substantial portions of the Software. | ||
%% | ||
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
%% THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
%% FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
%% DEALINGS IN THE SOFTWARE. | ||
|
||
%% @doc Utilities for working with hexadecimal strings. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
%% @author Bob Ippolito <[email protected]> | ||
%% @copyright 2006 Mochi Media, Inc. | ||
%% | ||
%% Permission is hereby granted, free of charge, to any person obtaining a | ||
%% copy of this software and associated documentation files (the "Software"), | ||
%% to deal in the Software without restriction, including without limitation | ||
%% the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
%% and/or sell copies of the Software, and to permit persons to whom the | ||
%% Software is furnished to do so, subject to the following conditions: | ||
%% | ||
%% The above copyright notice and this permission notice shall be included in | ||
%% all copies or substantial portions of the Software. | ||
%% | ||
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
%% THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
%% FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
%% DEALINGS IN THE SOFTWARE. | ||
|
||
%% @doc Yet another JSON (RFC 4627) library for Erlang. | ||
-module(mochijson). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
%% @author Bob Ippolito <[email protected]> | ||
%% @copyright 2007 Mochi Media, Inc. | ||
%% | ||
%% Permission is hereby granted, free of charge, to any person obtaining a | ||
%% copy of this software and associated documentation files (the "Software"), | ||
%% to deal in the Software without restriction, including without limitation | ||
%% the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
%% and/or sell copies of the Software, and to permit persons to whom the | ||
%% Software is furnished to do so, subject to the following conditions: | ||
%% | ||
%% The above copyright notice and this permission notice shall be included in | ||
%% all copies or substantial portions of the Software. | ||
%% | ||
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
%% THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
%% FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
%% DEALINGS IN THE SOFTWARE. | ||
|
||
%% @doc Yet another JSON (RFC 4627) library for Erlang. mochijson2 works | ||
%% with binaries as strings, arrays as lists (without an {array, _}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
%% @copyright Copyright (c) 2010 Mochi Media, Inc. | ||
%% @author David Reid <[email protected]> | ||
%% | ||
%% Permission is hereby granted, free of charge, to any person obtaining a | ||
%% copy of this software and associated documentation files (the "Software"), | ||
%% to deal in the Software without restriction, including without limitation | ||
%% the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
%% and/or sell copies of the Software, and to permit persons to whom the | ||
%% Software is furnished to do so, subject to the following conditions: | ||
%% | ||
%% The above copyright notice and this permission notice shall be included in | ||
%% all copies or substantial portions of the Software. | ||
%% | ||
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
%% THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
%% FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
%% DEALINGS IN THE SOFTWARE. | ||
|
||
%% @doc Utility functions for dealing with proplists. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
%% @author Bob Ippolito <[email protected]> | ||
%% @copyright 2010 Mochi Media, Inc. | ||
%% | ||
%% Permission is hereby granted, free of charge, to any person obtaining a | ||
%% copy of this software and associated documentation files (the "Software"), | ||
%% to deal in the Software without restriction, including without limitation | ||
%% the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
%% and/or sell copies of the Software, and to permit persons to whom the | ||
%% Software is furnished to do so, subject to the following conditions: | ||
%% | ||
%% The above copyright notice and this permission notice shall be included in | ||
%% all copies or substantial portions of the Software. | ||
%% | ||
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
%% THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
%% FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
%% DEALINGS IN THE SOFTWARE. | ||
|
||
%% @doc Write newline delimited log files, ensuring that if a truncated | ||
%% entry is found on log open then it is fixed before writing. Uses | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
%% @copyright 2007 Mochi Media, Inc. | ||
%% @author Bob Ippolito <[email protected]> | ||
%% | ||
%% Permission is hereby granted, free of charge, to any person obtaining a | ||
%% copy of this software and associated documentation files (the "Software"), | ||
%% to deal in the Software without restriction, including without limitation | ||
%% the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
%% and/or sell copies of the Software, and to permit persons to whom the | ||
%% Software is furnished to do so, subject to the following conditions: | ||
%% | ||
%% The above copyright notice and this permission notice shall be included in | ||
%% all copies or substantial portions of the Software. | ||
%% | ||
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
%% THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
%% FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
%% DEALINGS IN THE SOFTWARE. | ||
|
||
%% @doc Useful numeric algorithms for floats that cover some deficiencies | ||
%% in the math module. More interesting is digits/1, which implements | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
%% @author Bob Ippolito <[email protected]> | ||
%% @copyright 2010 Mochi Media, Inc. | ||
%% | ||
%% Permission is hereby granted, free of charge, to any person obtaining a | ||
%% copy of this software and associated documentation files (the "Software"), | ||
%% to deal in the Software without restriction, including without limitation | ||
%% the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
%% and/or sell copies of the Software, and to permit persons to whom the | ||
%% Software is furnished to do so, subject to the following conditions: | ||
%% | ||
%% The above copyright notice and this permission notice shall be included in | ||
%% all copies or substantial portions of the Software. | ||
%% | ||
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
%% THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
%% FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
%% DEALINGS IN THE SOFTWARE. | ||
|
||
%% @doc Create temporary files and directories. Requires crypto to be started. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
%% @copyright 2010 Mochi Media, Inc. | ||
%% @author Bob Ippolito <[email protected]> | ||
%% | ||
%% Permission is hereby granted, free of charge, to any person obtaining a | ||
%% copy of this software and associated documentation files (the "Software"), | ||
%% to deal in the Software without restriction, including without limitation | ||
%% the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
%% and/or sell copies of the Software, and to permit persons to whom the | ||
%% Software is furnished to do so, subject to the following conditions: | ||
%% | ||
%% The above copyright notice and this permission notice shall be included in | ||
%% all copies or substantial portions of the Software. | ||
%% | ||
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
%% THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
%% FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
%% DEALINGS IN THE SOFTWARE. | ||
|
||
%% @doc Algorithm to convert any binary to a valid UTF-8 sequence by ignoring | ||
%% invalid bytes. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.