panzerdp / voca

The ultimate JavaScript string library
https://vocajs.pages.dev
MIT License
3.61k stars 136 forks source link

Feature Request : Function for finding all possible combinations of given string. #19

Closed mahesh1996 closed 7 years ago

mahesh1996 commented 7 years ago

For e.g. If the input is "wxyz" then the output of the string should be ['w','wx','wxy','wxyz','wxz','wy','wyz','wz','x','xy','xyz','xz','y','yz','z']

panzerdp commented 7 years ago

Hey @mahesh1996, Can you let me know the use cases in web development of such a function? Thanks.

mahesh1996 commented 7 years ago

In web development, generally it is not needed. But it might be useful for specific purpose if backend is made in javascript (node js). Thanks @panzerdp

panzerdp commented 7 years ago

The application of such a function is for very limited situations. For now I am not interested to add it to the library. Thanks for your time @mahesh1996.

mahesh1996 commented 7 years ago

Thank you.